 
/* ============================================== 1. ROOT VARIABLES & RESET ============================================== */
:root {
   --theme-color: #F5F2EC;
   --theme-white: #FFFFFF;
   --secondary-color: #000000;
   --secondary-mid: #263029;
   --text: #1B2320;
   --text-muted: rgba(27, 35, 32, 0.65);
   --primary: #d4af37;
   --primary-hover: #B5954F;
   --primary-light: rgba(201, 169, 97, 0.12);
   --primary-gradient: linear-gradient(135deg, #d4af37 0%, #D4B896 100%);

   --secondary-gradient: linear-gradient(135deg, #3100A2 0%, #cfcfe8 100%);
   --purple-color : #5228a6;
   --green-mid: #7A8F85;
   --border: rgba(27, 35, 32, 0.1);
   --border-strong: rgba(27, 35, 32, 0.18);
   --shadow: 0 8px 24px rgba(27, 35, 32, 0.08);
   --shadow-lg: 0 20px 50px rgba(27, 35, 32, 0.12);
   --shadow-primary: 0 8px 30px rgba(201, 169, 97, 0.28);
   --radius: 16px;
   --radius-sm: 6px;
   --radius-full: 9999px;
   --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
   --font-body: 'Inter', sans-serif;
   --font-display: 'Playfair Display', serif;
}
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}
html {
   scroll-behavior: smooth;
}
body {
   font-family: var(--font-body);
   background: var(--theme-color);
   color: var(--text);
   overflow-x: hidden;
}
body.no-scroll {
   overflow: hidden;
}
img {
   max-width: 100%;
   display: block;
}
a {
   text-decoration: none;
   color: inherit;
}
.visible-xs {
   display: none !important;
}
.hidden-xs {
   display: block;
}
.section {
   padding: 40px 0;
   position: relative;
   overflow: hidden;
}
.container-main {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 15px;
}


/* ============================================== 2. TYPOGRAPHY ============================================== */
.section-label {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-family: var(--font-body);
   font-size: 0.75rem;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 3px;
   color: var(--primary);
   margin-bottom: 14px;
}
.section-label::before {
   content: '';
   width: 24px;
   height: 2px;
   background: var(--primary);
   border-radius: 2px;
}
.section-header {
   margin-bottom: 50px;
   position: relative;
   z-index: 2;
}
.section-header.text-center {
   text-align: center;
}
.section-header.text-center .section-subtitle {
   margin-left: auto;
   margin-right: auto;
}
.section-title {
   font-family: var(--font-display);
   font-size: clamp(30px, 4vw, 35px);
   font-weight: 700;
   line-height: 1.15;
   letter-spacing: -0.5px;
   color: var(--text);
   margin-bottom: 18px;
}
.section-title::after {
   content: '';
   display: block;
   width: 50px;
   height: 3px;
   background: var(--primary);
   border-radius: 2px;
   margin-top: 18px;
}
.section-header.text-center .section-title::after {
   margin-left: auto;
   margin-right: auto;
}
.section-subtitle {
   font-size: 1.05rem;
   color: var(--text-muted);
   line-height: 1.7;
   max-width: 900px;
}
.about_section .section-title::after {
   display: none;
}
.about_section .section-subtitle {
   max-width: 100%;
   margin-bottom: 24px;
}


/* ============================================== 3. BUTTONS ============================================== */
.btn-solid, .btn-outline, .btn-default, .btn-white-outline {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 12px 28px;
   font-family: var(--font-body);
   font-size: 0.9rem;
   font-weight: 600;
   letter-spacing: 0.5px;
   border-radius: var(--radius-sm);
   cursor: pointer;
   transition: var(--transition);
   position: relative;
   overflow: hidden;
   border: 2px solid transparent;
}
.btn-solid {
   background: var(--primary);
   color: var(--secondary-color);
   border-color: var(--primary);
}
.btn-solid:hover {
   background: var(--secondary-color);
   border-color: var(--secondary-color);
   color: var(--theme-white);
   box-shadow: var(--shadow-primary);
   transform: translateY(-2px);
}


.btn-outline {
   background: transparent;
   color: var(--secondary-color);
   border-color: var(--secondary-color);
}
.btn-outline:hover {
   background: var(--secondary-gradient);
   color: var(--primary);
   transform: translateY(-2px);
}


.btn-default {
   background: var(--theme-white);
   color: var(--secondary-color);
   border-color: var(--theme-white);
   box-shadow: var(--shadow);
}
.btn-default:hover {
   background: var(--primary);
   color: var(--secondary-color);
   border-color: var(--primary);
   transform: translateY(-2px);
   box-shadow: var(--shadow-primary);
}


.btn-white-outline {
   background: var(--purple-color);
   color: #fff;
   border-color: var(--purple-color);
}

.btn-white-outline:hover {
   background: var(--secondary-gradient);
   color: var(--secondary-color);
   border-color: var(--purple-color);
}

.btn-sm-action {
   padding: 10px 20px;
   font-size: 0.82rem;
}
.btn-md-action {
   padding: 12px 28px;
   font-size: 1rem;
}
.btn-flex-1 {
   flex: 1;
   justify-content: center;
   min-width: 120px;
}
.cta-buttons {
   display: flex;
   gap: 16px;
   justify-content: center;
   flex-wrap: wrap;
}



/* ============================================== 4. ANIMATIONS ============================================== */
@keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(30px);
     filter: blur(6px);
  }
  to {
     opacity: 1;
     transform: translateY(0);
     filter: blur(0);
  }
}
@keyframes slideInLeft {
   from {
     opacity: 0;
     transform: translateX(-30px);
  }
  to {
     opacity: 1;
     transform: translateX(0);
  }
}
@keyframes float {
   0%, 100% {
     transform: translateY(0);
  }
  50% {
     transform: translateY(-12px);
  }
}
@keyframes pulse-glow {
   0%, 100% {
     opacity: 0.4;
     transform: scale(1);
  }
  50% {
     opacity: 0.7;
     transform: scale(1.05);
  }
}
@keyframes slideUp {
   from {
     transform: translateY(100%);
     opacity: 0;
  }
  to {
     transform: translateY(0);
     opacity: 1;
  }
}
@keyframes marquee {
   0% {
     transform: translateX(0);
  }
  100% {
     transform: translateX(-50%);
  }
}
@keyframes gradient-shift {
   0%, 100% {
     background-position: 0% 50%;
  }
  50% {
     background-position: 100% 50%;
  }
}
@keyframes quote-float {
   0%, 100% {
     transform: translateY(0) rotate(-2deg);
  }
  50% {
     transform: translateY(-8px) rotate(2deg);
  }
}
.anim-fade-up {
   animation: fadeInUp 0.8s cubic-bezier(0.2,0.8,0.2,1) both;
}


/* ============================================== 5. HEADER & OFFCANVAS ============================================== */
.header-main {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   padding: 5px 0;
   z-index: 1000;
   transition: var(--transition);
}
.header-nav {
   max-width: 1400px;
   margin: 0 auto;
   padding: 0 10px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   min-height: 60px;
}
.header-nav-logo img {
   height: 105px;
   width: auto;
}
.header-nav-right ul {
   list-style: none;
   display: flex;
   align-items: center;
   gap: 16px;
   margin: 0;
   margin-bottom: 40px;
}
.header-phone-btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 10px 20px;
   background: var(--purple-color);
   border: 1px solid var(--purple-color);
   border-radius: var(--radius-sm);
   color: #fff;
   font-size: 0.9rem;
   font-weight: 500;
   transition: var(--transition);
}
.header-phone-btn:hover {
   background: var(--secondary-gradient);
   border-color: var(--purple-color);
}
.btn-service {
   color: #fff;
   background: none;
   border: none;
   padding: 0;
   cursor: pointer;
}
.btn-service i {
   font-size: 32px;
   color: #fff;
   transition: var(--transition);
}
.btn-service:hover i {
   transform: rotate(90deg);
}
.offcanvas {
   min-width: 380px;
   background: var(--theme-color) !important;
   border-left: 1px solid var(--border);
}
.offcanvas-header {
   background: var(--primary);
   color: #fff;
   padding: 24px;
}
.offcanvas-header h5 {
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 1rem;
   letter-spacing: 4px;
}
.offcanvas-body {
   padding: 20px;
}
.offcanvas-menu-link {
   display: block;
   width: 100%;
   text-align: center;
   padding: 14px 20px;
   margin-bottom: 10px;
   background: var(--theme-white);
   color: var(--text);
   font-family: var(--font-display);
   font-weight: 600;
   font-size: 0.95rem;
   border: 1px solid var(--border);
   border-radius: var(--radius-sm);
   transition: var(--transition);
}
.offcanvas-menu-link:hover {
   background: var(--secondary-color);
   color: var(--primary);
   border-color: var(--secondary-color);
   transform: translateX(4px);
}
.offcanvas-footer-section {
   background: var(--theme-white);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   padding: 24px;
   margin-top: 20px;
}
.offcanvas-footer-section h6 {
   font-family: var(--font-display);
   font-size: 0.8rem;
   font-weight: 700;
   color: var(--secondary-color);
   text-transform: uppercase;
   letter-spacing: 2px;
   margin-bottom: 16px;
   display: flex;
   align-items: center;
   gap: 10px;
}
.offcanvas-footer-section h6::before {
   content: '';
   width: 4px;
   height: 16px;
   background: var(--primary);
   border-radius: 2px;
}
.contact-info-modern {
   list-style: none;
   padding: 0;
   margin: 0;
}
.contact-info-modern li {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 14px;
   font-size: 0.9rem;
   color: var(--text-muted);
   transition: var(--transition);
}
.contact-info-modern li:hover {
   color: var(--secondary-color);
   transform: translateX(4px);
}
.contact-info-modern .icon-box {
   width: 36px;
   height: 36px;
   min-width: 36px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--secondary-color);
   color: var(--primary);
   border-radius: var(--radius-sm);
   font-size: 0.9rem;
   transition: var(--transition);
}
.contact-info-modern li:hover .icon-box {
   background: var(--primary);
   color: var(--secondary-color);
}
.social-icons-modern {
   display: flex;
   gap: 10px;
}
.social-icons-modern a {
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--theme-color);
   color: var(--secondary-color);
   border: 1px solid var(--border);
   border-radius: var(--radius-sm);
   font-size: 1rem;
   transition: var(--transition);
}
.social-icons-modern a:hover {
   background: var(--primary);
   color: var(--secondary-color);
   border-color: var(--primary);
   transform: translateY(-3px);
   box-shadow: var(--shadow-primary);
}



/* ============================================== 6. BANNER / HERO ============================================== */
.banner-hero {
   height: 100vh;
   position: relative;
   overflow: hidden;
   background: var(--secondary-color);
}
.banner-carousel {
   height: 100%;
}
.banner-image {
   background-image: var(--desktop-bg);
   background-size: cover;
   background-position: center;
   min-height: 100vh;
   position: relative;
   display: flex;
   align-items: center;
   overflow: hidden;
}

.banner-image::before {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(to bottom, rgb(27 35 32 / 44%) 0%, rgb(27 35 32 / 58%) 30%, rgba(27, 35, 32, 0.62) 60%, rgba(27, 35, 32, 0.40) 100%);
   z-index: 1;
}


.banner-content {
   position: relative;
   z-index: 2;
   width: 100%;
}
.banner-hero .section-label {
   font-size: 0.8rem;
   color: var(--primary);
   background: rgba(27,35,32,0.7);
   backdrop-filter: blur(8px);
   padding: 10px 20px 10px 48px;
   border-radius: var(--radius-full);
   border: 1px solid rgba(201,169,97,0.25);
   margin-bottom: 24px;
   animation: slideInLeft 0.8s ease-out both;
   position: relative;
}
.banner-hero .section-label::before {
   position: absolute;
   left: 20px;
   top: 50%;
   transform: translateY(-50%);
}
.banner-title {
  margin-top: 30px;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s cubic-bezier(0.2,0.8,0.2,1) 0.2s both;
}
.banner-title .accent-word {
   color: var(--primary);
   font-style: italic;
}
.banner-description {
  margin-top: 20px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeInUp 0.8s cubic-bezier(0.2,0.8,0.2,1) 0.4s both;
}
.banner-buttons {
   display: flex;
   gap: 16px;
   flex-wrap: wrap;
   animation: fadeInUp 0.8s cubic-bezier(0.2,0.8,0.2,1) 0.6s both;
   margin-bottom: 30px;
}
.banner-badges {
   display: flex;
   gap: 24px;
   flex-wrap: wrap;
   animation: fadeInUp 0.8s ease 0.8s both;
}
.banner-badge {
   display: flex;
   align-items: center;
   gap: 10px;
   color: rgba(255,255,255,0.8);
   font-size: 0.88rem;
   font-weight: 500;
}
.banner-badge i {
   color: var(--primary);
   font-size: 1.2rem;
}

.scroll-indicator {
   position: absolute;
   bottom: 40px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 3;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   color: rgba(255,255,255,0.5);
   font-size: 0.7rem;
   letter-spacing: 2px;
   text-transform: uppercase;
   animation: fadeInUp 0.8s ease 1s both;
}
.scroll-indicator .line {
   width: 1px;
   height: 40px;
   background: linear-gradient(to bottom, var(--primary), transparent);
   animation: float 2s ease-in-out infinite;
}



/* ============================================== 7. MARQUEE & ABOUT SECTION ============================================== */
.marquee-strip {
   background: var(--secondary-color);
   padding: 14px 0;
   overflow: hidden;
   white-space: nowrap;
}
.marquee-track {
   display: inline-flex;
   animation: marquee 25s linear infinite;
}
.marquee-item {
   font-family: var(--font-display);
   font-size: 0.85rem;
   font-weight: 700;
   color: var(--primary);
   text-transform: uppercase;
   letter-spacing: 3px;
   padding: 0 40px;
   display: inline-flex;
   align-items: center;
   gap: 16px;
}
.marquee-item .dot {
   width: 6px;
   height: 6px;
   background: var(--primary);
   border-radius: 50%;
   opacity: 0.4;
}



.about_section {
   background: var(--theme-white);
}
.about-grid-wrapper {
   display: flex;
   width: 100%;
   position: relative;
}
.about-left-col {
   flex: 0 0 45%;
   max-width: 45%;
   position: relative;
}
.about-left-image {
   width: 100%;
   height: 100%;
   position: absolute;
   inset: 0;
   overflow: hidden;
}
.about-left-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 1s cubic-bezier(0.2,0.8,0.2,1);
}
.about-left-image:hover img {
   transform: scale(1.06);
}
.about-left-image::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(27,35,32,0.3), transparent);
   pointer-events: none;
}
.about-right-col {
   flex: 0 0 55%;
   max-width: 55%;
   display: flex;
   flex-direction: column;
}
.about-top-row {
   display: flex;
   flex: 1;
}
.about-containers-image {
   flex: 0 0 28%;
   max-width: 28%;
   position: relative;
   overflow: hidden;
}
.about-containers-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.8s ease;
}
.about-containers-image:hover img {
   transform: scale(1.06);
}
.about-text-content {
   background: var(--theme-white);
   padding: 60px 50px;
   display: flex;
   flex-direction: column;
   justify-content: center;
}
.about-experience-box {
   border-left: 3px solid var(--primary);
   padding: 18px 22px;
   margin-bottom: 28px;
   background: var(--primary-light);
   border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about-experience-box p {
   font-size: 0.95rem;
   color: var(--text);
   margin: 0;
   line-height: 1.7;
}
.about-buttons {
   display: flex;
   gap: 20px;
   align-items: center;
   flex-wrap: wrap;
}
.about-phone {
   display: flex;
   align-items: center;
   gap: 14px;
   color: var(--text);
   font-weight: 600;
   font-size: 1rem;
   transition: var(--transition);
}
.about-phone:hover {
   color: var(--green-mid);
}
.about-phone i {
   width: 48px;
   height: 48px;
   background: var(--purple-color);
   color: var(--theme-white);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.1rem;
   transition: var(--transition);
}
.about-phone:hover i {
   background: var(--secondary-gradient);
   color: var(--theme-white);
   transform: rotate(15deg);
   box-shadow: var(--purple-color);
}
.about-statistics-bar {
   background: var(--purple-color );
   padding: 50px 0;
   width: 100%;
   position: relative;
   overflow: hidden;
}
.about-statistics-bar::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: radial-gradient(rgba(201,169,97,0.06) 1px, transparent 1px);
   background-size: 20px 20px;
}
.stats-container {
   display: flex;
   justify-content: space-around;
   align-items: center;
   max-width: 900px;
   margin: 0 auto;
   padding: 0 20px;
   position: relative;
   z-index: 1;
}
.stat-item {
   text-align: center;
   padding: 0 24px;
   transition: var(--transition);
}
.stat-item:hover {
   transform: translateY(-5px);
}
.stat-number {
   font-family: var(--font-display);
   font-size: 3rem;
   font-weight: 700;
   color: var(--primary);
   line-height: 1;
   margin-bottom: 10px;
}
.stat-label {
   font-size: 0.85rem;
   color: rgba(255,255,255,0.6);
   font-weight: 500;
   margin: 0;
   text-transform: uppercase;
   letter-spacing: 2px;
}



/* ============================================== 8. PROCESS & SERVICES ============================================== */
.process-horizontal-section {
   background: var(--purple-color );
   position: relative;
}
.process-horizontal-section::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: radial-gradient(rgba(201,169,97,0.05) 1px, transparent 1px);
   background-size: 24px 24px;
}
.process-horizontal-section .section-title {
   color: #fff;
}
.process-horizontal-section .section-title::after {
   background: var(--primary);
}
.process-horizontal-section .section-subtitle {
   color: rgba(255,255,255,0.55);
}
.process-horizontal-container {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   position: relative;
   margin: 0 auto;
   z-index: 1;
}
.h-step-item {
   flex: 1;
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   position: relative;
}
.h-step-icon-wrapper {
   margin-bottom: 12px;
   z-index: 2;
}
.h-step-icon {
   width: 76px;
   height: 76px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--secondary-color);
   border: 3px solid rgba(201,169,97,0.3);
   box-shadow: var(--shadow);
   transition: var(--transition);
}
.h-step-icon:hover {
   transform: translateY(-5px) scale(1.05);
}
.icon-1 {
   background: var(--primary);
}
.icon-2 {
   background: #A8C3B8;
}
.icon-3 {
   background: var(--green-mid);
}
.icon-4 {
   background: #D4B896;
}
.h-step-line {
   width: 2px;
   height: 24px;
   background: rgba(255,255,255,0.15);
   z-index: 1;
}
.h-step-bar {
   width: 100%;
   height: 42px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--secondary-color);
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 0.85rem;
   text-transform: uppercase;
   letter-spacing: 1.5px;
}
.h-step-item:first-child .h-step-bar {
   border-radius: var(--radius-full) 0 0 var(--radius-full);
   margin-right: -1px;
}
.h-step-item:nth-child(2) .h-step-bar, .h-step-item:nth-child(3) .h-step-bar {
   border-radius: 0;
   margin-right: -1px;
   margin-left: -1px;
}
.h-step-item:last-child .h-step-bar {
   border-radius: 0 var(--radius-full) var(--radius-full) 0;
   margin-left: -1px;
}
.bar-1 {
   background: var(--primary);
}
.bar-2 {
   background: #A8C3B8;
}
.bar-3 {
   background: var(--green-mid);
}
.bar-4 {
   background: #D4B896;
}
.h-step-content {
   margin-top: 22px;
   padding: 0 8px;
}
.h-step-title {
   font-family: var(--font-display);
   font-size: 1.15rem;
   font-weight: 700;
   margin-bottom: 8px;
   text-transform: uppercase;
}
.title-1 {
   color: var(--primary);
}
.title-2 {
   color: #A8C3B8;
}
.title-3 {
   color: var(--green-mid);
}
.title-4 {
   color: #D4B896;
}
.h-step-content p {
   font-size: 0.85rem;
   color: rgba(255,255,255,0.55);
   line-height: 1.6;
   margin: 0;
}
.services_section {
   background: var(--theme-color);
}
.services-tabs-wrapper {
   display: flex;
   margin-top: 20px;
   background: var(--theme-white);
   overflow: hidden;
   box-shadow: var(--shadow);
   border: 1px solid var(--border);
   min-height: 560px;
}
.services-nav {
   flex: 0 0 320px;
   background: var(--purple-color);
   display: flex;
   flex-direction: column;
   padding: 16px 0;
   z-index: 2;
}

.service-nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 15px 8px;
  cursor: pointer;
  transition: var(--transition);
}
.service-nav-item i {
   font-size: 1.3rem;
   color: rgba(255,255,255,0.5);
   transition: var(--transition);
   width: 36px;
   text-align: center;
}
.service-nav-item span {
   font-family: var(--font-display);
   font-size: 0.95rem;
   font-weight: 500;
   color: var(--theme-white);
   transition: var(--transition);
}
.service-nav-item:hover {
   background: rgba(255,255,255,0.03);
}
.service-nav-item:hover i, .service-nav-item:hover span {
   color: rgba(255,255,255,0.85);
}
.service-nav-item.active {
   background: var(--primary);
   border-left-color: var(--secondary-color);
}
.service-nav-item.active i {
   color: var(--secondary-color);
   transform: scale(1.1);
}
.service-nav-item.active span {
   color: var(--secondary-color);
   font-weight: 700;
}
.services-display {
   flex: 1;
   position: relative;
   overflow: hidden;
}
.service-tab-pane {
   position: absolute;
   inset: 0;
   display: flex;
   opacity: 0;
   visibility: hidden;
   transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
   transform: translateX(30px);
   pointer-events: none;
}
.service-tab-pane.active {
   height: 100%;
   opacity: 1;
   visibility: visible;
   transform: translateX(0);
   position: relative;
   pointer-events: auto;
}
.service-display-image {
   flex: 0 0 55%;
   position: relative;
   overflow: hidden;
}
.service-display-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-display-image::after {
   content: '';
   position: absolute;
   top: 0;
   right: 0;
   width: 50%;
   height: 100%;
   background: linear-gradient(90deg, transparent, var(--theme-white));
   z-index: 1;
}
.service-display-content {
   flex: 0 0 45%;
   padding: 20px 50px 60px 20px;
   display: flex;
   flex-direction: column;
   justify-content: center;
   position: relative;
   z-index: 2;
   background: var(--theme-white);
}
.service-display-title {
   font-family: var(--font-display);
   font-size: 1.8rem;
   font-weight: 700;
   color: var(--secondary-color);
   margin-bottom: 18px;
   line-height: 1.15;
   letter-spacing: -0.5px;
}
.service-display-desc {
   font-size: 0.95rem;
   color: var(--text-muted);
}


/* ============================================== 9. WHY CHOOSE US / PROCESS SECTION ============================================== */
.process_section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(#cfcfe870, #3100a2de), url(../images/hero.jpg);
  background-size: cover;
  background-position: center;
}
.process_section .section-title {
   color: #fff;
}
.process_section .section-title::after {
   background: var(--primary);
}
.process_section .section-subtitle {
   color: rgba(255,255,255,0.6);
}
.process-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 16px;
   position: relative;
   z-index: 1;
}
.process-grid::before {
   content: '';
   position: absolute;
   top: 45px;
   left: 60px;
   right: 60px;
   height: 2px;
   background: linear-gradient(90deg, var(--primary), #d4af37, var(--primary));
   z-index: 0;
}
.process-card {
   border-radius: var(--radius);
   padding: 30px 16px;
   text-align: center;
   position: relative;
   z-index: 1;
   transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
   height: 100%;
   display: flex;
   flex-direction: column;
   align-items: center;
   opacity: 0;
   transform: translateY(50px);
   border: 1px solid rgba(255,255,255,0.08);
   background: #1b23205e;
}
.process-card.animate-in {
   opacity: 1;
   transform: translateY(0);
}
.process-card:hover {
   transform: translateY(-8px);
   box-shadow: var(--shadow-lg);
   border-color: rgba(201,169,97,0.3);
}
.process-number {
   width: 48px;
   height: 48px;
   border-radius: 50%;
   background: var(--primary-light);
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 1.1rem;
   margin-bottom: 18px;
   border: 1px solid rgba(201,169,97,0.3);
   color: var(--primary);
   transition: var(--transition);
}
.process-card:hover .process-number {
   background: var(--primary);
   color: var(--secondary-color);
   border-color: var(--primary);
}
.process-icon {
   font-size: 2.2rem;
   margin-bottom: 14px;
   color: var(--primary);
   transition: var(--transition);
}
.process-card:hover .process-icon {
   color: var(--primary);
   transform: scale(1.1);
}
.process-title {
   font-family: var(--font-display);
   font-size: 1rem;
   font-weight: 700;
   margin-bottom: 8px;
   color: #fff;
}
.process-desc {
   font-size: 0.82rem;
   color: rgba(255,255,255,0.55);
   line-height: 1.5;
   margin-bottom: 0;
}




/* ============================================== 10. FLEET SECTION ============================================== */
.fleet-filter-tabs {
   display: flex;
   justify-content: center;
   gap: 12px;
   margin-bottom: 40px;
   flex-wrap: wrap;
}
.fleet-tab {
   padding: 12px 28px;
   border: 2px solid var(--border-strong);
   background: var(--theme-white);
   color: var(--text);
   font-family: var(--font-body);
   font-size: 0.85rem;
   font-weight: 600;
   border-radius: var(--radius-sm);
   cursor: pointer;
   transition: var(--transition);
   text-transform: uppercase;
   letter-spacing: 1px;
}
.fleet-tab:hover {
   border-color: var(--secondary-color);
   color: var(--secondary-color);
}
.fleet-tab.active {
   background: var(--primary);
   color: var(--secondary-color);
   border-color: var(--primary);
   box-shadow: var(--shadow-primary);
}
.fleet-carousel .item {
   padding: 10px;
}
.fleet-card {
   background: var(--theme-white);
   border: 1px solid var(--border);
   border-radius: var(--radius);
   overflow: hidden;
   transition: var(--transition);
   position: relative;

}
.fleet-card:hover {
   transform: translateY(-10px);
   box-shadow: var(--shadow-lg);
   border-color: rgba(201,169,97,0.3);
}
.fleet-image {
   padding: 30px;
   position: relative;
   overflow: hidden;
   background: var(--theme-white);
}
.fleet-image img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.8s ease;
}
.fleet-card:hover .fleet-image img {
   transform: scale(1.08);
}
.fleet-image::after {
   content: '';
   position: absolute;
   inset: 0;
   background: linear-gradient(to top, rgba(27,35,32,0.5), transparent 50%);
   pointer-events: none;
}
.fleet-info {
   padding: 20px 35px 20px;
   text-align: center;
   box-shadow: var(--shadow-lg);
}

.fleet-name {
   font-family: var(--font-display);
   font-size: 1.15rem;
   font-weight: 700;
   color: var(--secondary-color);
   margin-bottom: 14px;
   line-height: 1.2;
}


.fleet-specs {
   gap: 20px;
   margin-bottom: 12px;
   padding-bottom: 12px;
   border-bottom: 1px dashed var(--border);
}
.fleet-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 5px 10px;
}

.fleet-spec i {
   color: var(--primary);
   font-size: 0.85rem;
}
.fleet-bottom {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 12px;
}


.fleet-book-btn {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 8px 16px;
   background: var(--purple-color);
   color: var(--theme-white);
   font-family: var(--font-body);
   font-size: 0.78rem;
   font-weight: 600;
   border-radius: var(--radius-sm);
   transition: var(--transition);
}
.fleet-book-btn:hover {
   background: var(--secondary-gradient);
   color: var(--secondary-color);
   transform: translateX(2px);
}





.fleet-book-btn1 {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   padding: 8px 16px;
   background: var(--primary);
   color: var(--secondary-color);
   font-family: var(--font-body);
   font-size: 0.78rem;
   font-weight: 600;
   border-radius: var(--radius-sm);
   transition: var(--transition);
}

.fleet-book-btn1:hover {
   background: var(--secondary-color);
   color: var(--theme-white);
   transform: translateX(2px);
}



.fleet-cta-strip {
   margin-top: 40px;
   background: var(--secondary-color);
   border-radius: var(--radius);
   padding: 30px 40px;
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 20px;
   flex-wrap: wrap;
   position: relative;
   overflow: hidden;
}
.fleet-cta-strip::before {
   content: '';
   position: absolute;
   top: -50px;
   right: -50px;
   width: 200px;
   height: 200px;
   background: radial-gradient(circle, var(--primary-light), transparent 70%);
   border-radius: 50%;
}
.fleet-cta-text {
   color: #fff;
   position: relative;
   z-index: 1;
}
.fleet-cta-text h4 {
   font-family: var(--font-display);
   font-size: 1.3rem;
   font-weight: 700;
   margin-bottom: 6px;
}
.fleet-cta-text p {
   color: rgba(255,255,255,0.6);
   margin: 0;
   font-size: 0.9rem;
}
.fleet-cta-buttons {
   display: flex;
   gap: 12px;
   flex-wrap: wrap;
   position: relative;
   z-index: 1;
}




/* ============================================== 11. TESTIMONIALS - UNIQUE DESIGN ============================================== */
.testimonial_section {
   background: var(--secondary-gradient);
   overflow: visible;
   padding: 80px 0;
   position: relative;
}
.testimonial_section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 100%;
   background-image: radial-gradient(circle at 20% 30%, rgba(201,169,97,0.08) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(122,143,133,0.06) 0%, transparent 50%);
   pointer-events: none;
}
.testimonial_section::after {
   content: '';
   position: absolute;
   inset: 0;
   background-image: radial-gradient(rgba(201,169,97,0.03) 1px, transparent 1px);
   background-size: 30px 30px;
   pointer-events: none;
}
.testimonial_section .section-title {
   color: #fff;
   position: relative;
   z-index: 2;
}
.testimonial_section .section-subtitle {
   color: rgba(255,255,255,0.6);
   position: relative;
   z-index: 2;
}
.testimonial-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
   position: relative;
   z-index: 2;
   margin-top: 50px;
}
.testimonial-card-unique {
   background: rgba(255,255,255,0.03);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255,255,255,0.08);
   border-radius: var(--radius);
   padding: 35px 30px;
   transition: var(--transition);
   position: relative;
   overflow: hidden;
}
.testimonial-card-unique::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 3px;
   background: var(--primary-gradient);
   transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.4s ease;
}
.testimonial-card-unique:hover::before {
   transform: scaleX(1);
}
.testimonial-card-unique::after {
   content: '"';
   position: absolute;
   top: -20px;
   right: 20px;
   font-family: var(--font-display);
   font-size: 120px;
   color: rgba(201,169,97,0.08);
   line-height: 1;
   pointer-events: none;
   transition: var(--transition);
}
.testimonial-card-unique:hover::after {
   color: rgba(201,169,97,0.15);
   transform: rotate(-5deg) scale(1.1);
}
.testimonial-card-unique:hover {
   transform: translateY(-8px);
   background: rgba(255,255,255,0.06);
   border-color: rgba(201,169,97,0.3);
   box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.testimonial-rating {
   display: flex;
   gap: 4px;
   margin-bottom: 20px;
}
.testimonial-rating i {
   color: var(--primary);
   font-size: 18px;
}
.testimonial-quote {
   font-size: 0.95rem;
   line-height: 1.8;
   color: rgba(255,255,255,0.85);
   margin-bottom: 25px;
   font-style: italic;
   position: relative;
   z-index: 1;
}
.testimonial-author {
   display: flex;
   align-items: center;
   gap: 16px;
   padding-top: 20px;
   border-top: 1px solid rgba(255,255,255,0.08);
   position: relative;
   z-index: 1;
}
.testimonial-avatar {
   width: 45px;
   height: 45px;
   border-radius: 50%;
   background: var(--primary-gradient);
   display: flex;
   align-items: center;
   justify-content: center;
   font-family: var(--font-display);
   font-weight: 700;
   font-size: 16px;
   color: var(--secondary-color);
   flex-shrink: 0;
   transition: var(--transition);
}
.testimonial-card-unique:hover .testimonial-avatar {
   transform: scale(1.1) rotate(5deg);
   box-shadow: 0 8px 20px rgba(201,169,97,0.4);
}
.testimonial-info h5 {
   font-family: var(--font-display);
   font-size: 1rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 4px;
}
.testimonial-info p {
   font-size: 0.82rem;
   color: rgba(255,255,255,0.5);
   margin: 0;
   display: flex;
   align-items: center;
   gap: 6px;
}
.testimonial-info p i {
   color: var(--primary);
   font-size: 0.85rem;
}




/* ============================================== 12. BUSINESS INFO ============================================== */
.biz-info-section {
   background: var(--secondary-color);
   position: relative;
   overflow: hidden;
   color: #fff;
}
.biz-info-section::before {
   content: '';
   position: absolute;
   inset: 0;
   background-image: radial-gradient(rgba(201,169,97,0.05) 1px, transparent 1px);
   background-size: 24px 24px;
}
.biz-info-section .section-title {
   color: #fff;
}
.biz-info-section .section-subtitle {
   color: rgba(255,255,255,0.65);
}
.biz-info-grid {
   display: grid;
   grid-template-columns: 1.2fr 1fr 1fr;
   gap: 40px;
   position: relative;
   z-index: 1;
}
.biz-info-col {
   background: rgba(255,255,255,0.03);
   border: 1px solid rgba(255,255,255,0.08);
   border-radius: var(--radius);
   padding: 32px;
   transition: var(--transition);
}
.biz-info-col:hover {
   border-color: rgba(201,169,97,0.35);
   transform: translateY(-4px);
}
.biz-info-col h4 {
   font-family: var(--font-display);
   font-size: 1.2rem;
   color: var(--primary);
   margin-bottom: 20px;
   display: flex;
   align-items: center;
   gap: 12px;
}
.biz-info-col h4 i {
   width: 40px;
   height: 40px;
   background: var(--primary);
   color: var(--secondary-color);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
}
.biz-info-col .info-row {
   display: flex;
   align-items: flex-start;
   gap: 12px;
   padding: 10px 0;
   color: rgba(255,255,255,0.75);
   font-size: 0.92rem;
   line-height: 1.6;
}
.biz-info-col .info-row i {
   color: var(--primary);
   font-size: 1.1rem;
   margin-top: 2px;
   min-width: 20px;
}
.biz-info-col .info-row strong {
   color: #fff;
   display: block;
   margin-bottom: 2px;
   font-weight: 600;
}
.claimed-badge {
   display: inline-flex;
   align-items: center;
   gap: 6px;
   background: var(--primary-light);
   color: var(--primary);
   padding: 4px 12px;
   border-radius: var(--radius-full);
   font-size: 0.75rem;
   font-weight: 600;
   letter-spacing: 1px;
   text-transform: uppercase;
   margin-top: 12px;
   border: 1px solid rgba(201,169,97,0.3);
}
.hours-list {
   list-style: none;
   padding: 0;
   margin: 0;
}
.hours-list li {
   display: flex;
   justify-content: space-between;
   padding: 8px 0;
   font-size: 0.9rem;
   color: rgba(255,255,255,0.7);
   border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.hours-list li:last-child {
   border: none;
}
.hours-list li span:last-child {
   color: var(--primary);
   font-weight: 600;
}





/* ============================================== 13. CTA ============================================== */
.cta_section {
   padding: 80px 0;
   position: relative;
   overflow: hidden;
}
.cta_section .section-title {
   color: var(--text);
}
.cta_section .section-subtitle {
   color: var(--text);
   max-width: 600px;
   margin: 0 auto 40px;
}



/* ============================================== 14. FOOTER - MODERN DESIGN ============================================== */
.site-footer {
   background:   var(--secondary-gradient);
   color: #fff;
   position: relative;
   overflow: hidden;
   padding-top: 0;
}

.footer-main {
   padding: 80px 0 50px;
   position: relative;
   z-index: 2;
}
.footer-brand {
   margin-bottom: 30px;
}
.footer-brand h4 {
   font-family: var(--font-display);
   font-size: 1.8rem;
   font-weight: 700;
   margin-bottom: 20px;
   color: #fff;
   display: flex;
   align-items: center;
   gap: 10px;
}
.footer-brand h4::before {
   content: '';
   width: 10px;
   height: 10px;
   background: var(--primary);
   border-radius: 50%;
   box-shadow: 0 0 12px var(--primary);
}
.footer-brand p {
   color: rgba(255,255,255,0.55);
   margin-bottom: 24px;
   line-height: 1.8;
   font-size: 0.9rem;
   max-width: 300px;
}
.footer-social-icons {
   display: flex;
   gap: 10px;
}
.footer-social-icons a {
   width: 40px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--primary);
   border: 1px solid rgba(255,255,255,0.08);
   border-radius: var(--radius-sm);
   color: var(--theme-white);
   transition: var(--transition);
   font-size: 1rem;
}
.footer-social-icons a:hover {
   background: var(--primary);
   border-color: var(--primary);
   color: var(--secondary-color);
   transform: translateY(-4px);
   box-shadow: var(--shadow-primary);
}
.footer-heading {
   font-family: var(--font-display);
   font-size: 1rem;
   font-weight: 700;
   color: #fff;
   margin-bottom: 24px;
   text-transform: uppercase;
   letter-spacing: 2px;
   position: relative;
   padding-bottom: 14px;
}
.footer-heading::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: 0;
   width: 30px;
   height: 3px;
   background: var(--primary);
   border-radius: 2px;
}
.footer-links {
   list-style: none;
   padding: 0;
   margin: 0;
}
.footer-links li {
   margin-bottom: 12px;
}
.footer-links a {
   color: rgba(255,255,255,0.55);
   transition: var(--transition);
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 0.9rem;
}
.footer-links a::before {
   content: '';
   width: 0;
   height: 1px;
   background: var(--primary);
   transition: width 0.3s ease;
}
.footer-links a:hover {
   color: var(--primary);
   transform: translateX(8px);
}
.footer-links a:hover::before {
   width: 12px;
}
.footer-contact-info {
   list-style: none;
   padding: 0;
   margin: 0;
}
.footer-contact-info li {
   display: flex;
   align-items: flex-start;
   margin-bottom: 20px;
   color: rgba(255,255,255,0.55);
   font-size: 0.9rem;
   line-height: 1.6;
   transition: var(--transition);
}
.footer-contact-info li:hover {
   transform: translateX(4px);
}
.footer-contact-info .contact-icon {
   width: 40px;
   height: 40px;
   min-width: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--primary-light);
   color: var(--primary);
   border-radius: var(--radius-sm);
   margin-right: 14px;
   font-size: 1rem;
   transition: var(--transition);
}
.footer-contact-info li:hover .contact-icon {
   background: var(--primary);
   color: var(--secondary-color);
   transform: rotate(8deg);
}
.footer-contact-info .contact-text strong {
   display: block;
   color: #fff;
   font-weight: 600;
   margin-bottom: 2px;
   font-size: 0.85rem;
}
.footer-bottom {
   background: rgba(0,0,0,0.3);
   padding: 24px 0;
   border-top: 1px solid rgba(255,255,255,0.05);
   position: relative;
   z-index: 2;
}
.footer-bottom-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
   gap: 16px;
}
.copyright-text {
   color: rgba(255,255,255,0.45);
   font-size: 0.85rem;
   margin: 0;
}
.footer-bottom-links {
   display: flex;
   gap: 24px;
   list-style: none;
   margin: 0;
   padding: 0;
}
.footer-bottom-links a {
   color: rgba(255,255,255,0.45);
   transition: var(--transition);
   font-size: 0.85rem;
}
.footer-bottom-links a:hover {
   color: var(--primary);
}
.scroll-top-btn {
   position: absolute;
   right: 24px;
   bottom: 24px;
   width: 44px;
   height: 44px;
   background: var(--primary);
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: var(--secondary-color);
   font-size: 1.1rem;
   transition: var(--transition);
   box-shadow: var(--shadow-primary);
   z-index: 10;
}
.scroll-top-btn:hover {
   transform: translateY(-4px);
   box-shadow: 0 10px 30px rgba(201,169,97,0.5);
}




/* ============================================ 
   17. FAQ SECTION 
   ============================================ */
   .faq_section {
     background: var(--theme-white);
     position: relative;
     overflow: hidden;
  }
  .faq_section::before {
     content: '';
     position: absolute;
     top: -100px;
     right: -100px;
     width: 400px;
     height: 400px;
     background: radial-gradient(circle, rgba(201,169,97,0.06), transparent 70%);
     border-radius: 50%;
     pointer-events: none;
  }
  .faq_section::after {
     content: '';
     position: absolute;
     bottom: -150px;
     left: -150px;
     width: 500px;
     height: 500px;
     background: radial-gradient(circle, rgba(122,143,133,0.04), transparent 70%);
     border-radius: 50%;
     pointer-events: none;
  }
  .faq-wrapper {
     display: grid;
     grid-template-columns: 1fr 1.4fr;
     gap: 60px;
     align-items: start;
     position: relative;
     z-index: 2;
  }
  .faq-left-col {
     position: sticky;
     top: 100px;
  }
  .faq-left-col .section-title {
     margin-bottom: 20px;
  }
  .faq-left-col .faq-desc {
     font-size: 1rem;
     color: var(--text-muted);
     line-height: 1.8;
     margin-bottom: 30px;
  }
  .faq-contact-card {
     background: var(--purple-color);
     border-radius: var(--radius);
     padding: 30px;
     position: relative;
     overflow: hidden;
  }
  .faq-contact-card::before {
     content: '';
     position: absolute;
     top: -30px;
     right: -30px;
     width: 120px;
     height: 120px;
     background: radial-gradient(circle, rgba(201,169,97,0.15), transparent 70%);
     border-radius: 50%;
  }
  .faq-contact-card h5 {
     font-family: var(--font-display);
     font-size: 1.1rem;
     font-weight: 700;
     color: #fff;
     margin-bottom: 10px;
     position: relative;
     z-index: 1;
  }
  .faq-contact-card p {
     color: rgba(255,255,255,0.6);
     font-size: 0.9rem;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
  }

  .faq-right-col {
     display: flex;
     flex-direction: column;
     gap: 16px;
  }
  .faq-item {
     background: var(--theme-color);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     overflow: hidden;
     transition: var(--transition);
  }
  .faq-item:hover {
     border-color: rgba(201,169,97,0.3);
     box-shadow: var(--shadow);
  }
  .faq-item.active {
     border-color: var(--primary);
     box-shadow: var(--shadow-primary);
  }
  .faq-question {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 16px;
     padding: 10px 15px;
     cursor: pointer;
     transition: var(--transition);
     user-select: none;
  }
  .faq-question:hover {
     background: rgba(201,169,97,0.04);
  }
  .faq-item.active .faq-question {
     background: rgba(201,169,97,0.06);
  }
  .faq-question-left {
     display: flex;
     align-items: center;
     gap: 16px;
  }
  .faq-question-icon {
     width: 32px;
     height: 32px;
     min-width: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--primary-light);
     color: var(--primary);
     border-radius: var(--radius-sm);
     font-size: 1.1rem;
     transition: var(--transition);
  }
  .faq-item.active .faq-question-icon {
     background: var(--primary);
     color: var(--secondary-color);
  }
  .faq-question h4 {
     font-family: var(--font-display);
     font-size: 1.05rem;
     font-weight: 600;
     color: var(--text);
     margin: 0;
     line-height: 1.4;
  }
  .faq-toggle-icon {
     width: 30px;
     height: 30px;
     min-width: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--theme-white);
     border: 1px solid var(--border);
     border-radius: 50%;
     font-size: 1.2rem;
     color: var(--text);
     transition: var(--transition);
  }
  .faq-item.active .faq-toggle-icon {
     background: var(--primary);
     border-color: var(--primary);
     color: var(--secondary-color);
     transform: rotate(45deg);
  }
  .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     padding: 0 28px 0 86px;
  }
  .faq-item.active .faq-answer {
     max-height: 400px;
     padding: 0 28px 24px 86px;
  }
  .faq-answer p {
     font-size: 0.92rem;
     color: var(--text-muted);
     line-height: 1.8;
     margin: 0;
  }



/* ============================================
   MISSION VISION GOALS SECTION
   ============================================ */

   .mvg_section {
     background: var(--theme-color);
     position: relative;
     overflow: hidden;
  }


  .mvg-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 26px;
     position: relative;
     z-index: 2;
  }

  .mvg-card {
     position: relative;
     background: var(--theme-white);
     border: 1px solid var(--border);
     border-radius: var(--radius);
     padding: 34px 30px;
     display: flex;
     flex-direction: column;
     gap: 18px;
     transition: var(--transition);
     overflow: hidden;
     box-shadow: 0 6px 22px rgba(27, 35, 32, 0.05);
  }

  .mvg-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--primary-gradient);
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
  }

  .mvg-card:hover {
     transform: translateY(-10px);
     border-color: rgba(201, 169, 97, 0.35);
     box-shadow: var(--shadow-lg);
  }

  .mvg-card:hover::before {
     transform: scaleX(1);
  }

  .mvg-top {
     display: flex;
     align-items: flex-start;
     justify-content: space-between;
     gap: 16px;
     margin-bottom: 6px;
  }

  .mvg-icon {
     width: 64px;
     height: 64px;
     min-width: 64px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--purple-color);
     color: var(--primary);
     border-radius: 20px;
     font-size: 1.7rem;
     box-shadow: var(--shadow);
     transition: var(--transition);
  }

  .mvg-card:hover .mvg-icon {
     background: var(--primary);
     color: var(--secondary-color);
     transform: rotate(-6deg) scale(1.05);
  }

  .mvg-index {
     font-family: var(--font-display);
     font-size: 3rem;
     line-height: 0.9;
     font-weight: 700;
     color: rgba(27, 35, 32, 0.08);
     user-select: none;
  }

  .mvg-title {
     font-family: var(--font-display);
     font-size: 1.4rem;
     font-weight: 700;
     color: var(--text);
     margin: 0;
  }

  .mvg-text {
     font-size: 0.95rem;
     line-height: 1.8;
     color: var(--text-muted);
     margin: 0;
  }

  .mvg-list {
     list-style: none;
     padding: 0;
     margin: 8px 0 0;
     display: grid;
     gap: 12px;
  }

  .mvg-list li {
     position: relative;
     padding-left: 30px;
     color: var(--text-muted);
     font-size: 0.92rem;
     line-height: 1.65;
  }

  .mvg-list li i {
     position: absolute;
     left: 0;
     top: 2px;
     color: var(--primary);
     font-size: 1rem;
  }


  .mvg-card-dark {
     background: var(--purple-color);
     border-color: rgba(255, 255, 255, 0.08);
  }

  .mvg-card-dark .mvg-title {
     color: #ffffff;
  }

  .mvg-card-dark .mvg-text,
  .mvg-card-dark .mvg-list li {
     color: rgba(255, 255, 255, 0.68);
  }

  .mvg-card-dark .mvg-icon {
     background: rgba(255, 255, 255, 0.06);
     border: 1px solid rgba(201, 169, 97, 0.25);
  }

  .mvg-card-dark .mvg-index {
     color: rgba(255, 255, 255, 0.12);
  }

  .mvg-card-dark:hover {
     border-color: rgba(201, 169, 97, 0.4);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  }

  .mvg-card-dark:hover .mvg-icon {
     background: var(--primary);
     color: var(--secondary-color);
  }

  @media (max-width: 1199px) {
     .mvg-grid {
       grid-template-columns: repeat(2, 1fr);
    }

    .mvg-card:last-child {
       grid-column: span 2;
    }
 }

 @media (max-width: 767px) {
  .mvg-grid {
    grid-template-columns: 1fr;
 }

 .mvg-card:last-child {
    grid-column: auto;
 }

 .mvg-card {
    padding: 26px 22px;
 }

 .mvg-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    font-size: 1.4rem;
    border-radius: 16px;
 }

 .mvg-index {
    font-size: 2.4rem;
 }

 .mvg-title {
    font-size: 1.2rem;
 }
}
