/* ============================================
   GLASSMORPHISM PROJECT CARD - COMBINED STYLES
   ============================================ */

/* ============================================
   WIDGET 1: Glassmorphism Project Card (gpc-)
   ============================================ */

.gpc-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background: #0c1322;
  direction: rtl;
}

.gpc-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.gpc-glow-1 {
  top: 0;
  right: 25%;
  width: 600px;
  height: 600px;
  background: rgba(230, 196, 121, 0.05);
}

.gpc-glow-2 {
  bottom: 0;
  left: 25%;
  width: 800px;
  height: 800px;
  background: rgba(35, 42, 58, 0.5);
}

.gpc-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* ... (keep existing gpc- styles from previous version) ... */

/* ============================================
   WIDGET 2: Services Showcase (gss-)
   ============================================ */

.gss-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background: #0c1322;
  direction: rtl;
}

.gss-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
}

.gss-glow-1 {
  top: 0;
  right: 25%;
  width: 600px;
  height: 600px;
  background: rgba(230, 196, 121, 0.05);
}

.gss-glow-2 {
  bottom: 0;
  left: 25%;
  width: 800px;
  height: 800px;
  background: rgba(35, 42, 58, 0.5);
}

.gss-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Header */
.gss-header {
  margin-bottom: 5rem;
  padding-right: 2rem;
  border-right: 4px solid #e6c479;
}

.gss-label {
  display: block;
  color: #e6c479;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.gss-title {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #dce2f7;
}

.gss-title-accent {
  color: #e6c479;
}

.gss-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  max-width: 42rem;
  color: #b9c8de;
}

/* Grid */
.gss-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  grid-auto-rows: minmax(100px, auto);
}

/* Card Base */
.gss-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  background: #141b2b;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: inset 0 0 0 1px rgba(77, 70, 57, 0.15);
  transition: all 0.4s ease-in-out;
}

.gss-card:hover {
  transform: translateY(-8px);
  box-shadow:
    inset 0 0 0 1px rgba(230, 196, 121, 0.5),
    0 20px 40px -10px rgba(230, 196, 121, 0.06);
}

/* Card Layouts */
.gss-card-featured {
  grid-column: 1 / 8;
  grid-row: 1 / 4;
  min-height: 380px;
}

.gss-card-standard {
  grid-column: 6 / 13;
  grid-row: 2 / 5;
  min-height: 300px;
  margin-top: -60px;
  z-index: 20;
  background: #191f2f;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.gss-card-compact {
  grid-column: 1 / 6;
  grid-row: 4 / 7;
  min-height: 300px;
}

.gss-card-split {
  grid-column: 4 / 13;
  grid-row: 5 / 9;
  min-height: 380px;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Card Image */
.gss-card-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  height: 100% !important;
}

.gss-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 0.5s ease,
    transform 0.7s ease;
}

.gss-card:hover .gss-card-image img {
  transform: scale(1.05);
}

/* Overlay */
.gss-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 19, 34, 0.95) 0%, transparent 60%);
  pointer-events: none;
}

/* Badge */
.gss-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: #c9a961;
  color: #3f2e00;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
  backdrop-filter: blur(4px);
}

.gss-badge-icon {
  font-size: 1rem;
}

/* Content */
.gss-card-content {
  position: relative;
  padding: 2rem;
  z-index: 10;
}

.gss-card-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #dce2f7;
  transition: color 0.3s ease;
}

.gss-card:hover .gss-card-title {
  color: #e6c479;
}

.gss-card-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #b9c8de;
}

/* CTA */
.gss-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e6c479;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.gss-cta:hover {
  gap: 0.75rem;
  color: #ffdf9b;
}

.gss-cta-icon {
  transition: transform 0.3s ease;
}

.gss-card:hover .gss-cta-icon {
  transform: translateX(-4px);
}

/* Split Card Specific */
.gss-card-split .gss-card-image {
  position: relative;
  grid-column: 1;
}

.gss-card-split .gss-card-content {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(25, 31, 47, 0.9);
  backdrop-filter: blur(8px);
}

/* Responsive */
@media (max-width: 1023px) {
  .gss-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gss-card-featured,
  .gss-card-standard,
  .gss-card-compact,
  .gss-card-split {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 300px;
    margin-top: 0;
  }

  .gss-card-split {
    grid-template-columns: 1fr;
  }

  .gss-card-split .gss-card-image {
    height: 200px;
  }

  .gss-header {
    margin-bottom: 3rem;
  }

  .gss-title {
    font-size: 1.875rem;
  }
}

@media (max-width: 640px) {
  .gss-section {
    padding: 4rem 1rem;
  }

  .gss-card-content {
    padding: 1.5rem;
  }

  .gss-card-title {
    font-size: 1.5rem;
  }
}

/* ============================================
   WIDGET 3: Workflow Process (gwp-)
   ============================================ */

.gwp-section {
  position: relative;
  width: 100%;
  padding: 6rem 1.5rem;
  overflow: hidden;
  direction: rtl;
}

.gwp-container {
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Header */
.gwp-header {
  margin-bottom: 4rem;
  position: relative;
  z-index: 10;
}

.gwp-label-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(201, 169, 97, 0.2);
  color: #e6c479;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(153, 144, 128, 0.3);
  backdrop-filter: blur(4px);
}

.gwp-title {
  font-family: "Tajawal", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  color: #dce2f7;
  margin-bottom: 1.5rem;
}

.gwp-title-accent {
  color: #e6c479;
}

.gwp-desc {
  font-family: "Cairo", sans-serif;
  font-size: 1.125rem;
  line-height: 1.75;
  color: #b9c8de;
  max-width: 42rem;
}

.gwp-drag-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: rgba(185, 200, 222, 0.7);
}

.gwp-drag-icon {
  font-size: 0.875rem;
}

/* Carousel Wrapper */
.gwp-carousel-wrapper {
  position: relative;
  width: 100%;
  padding: 1rem 0 2rem;
}

/* Connection Line */
.gwp-connection-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(153, 144, 128, 0.2);
  transform: translateY(-50%);
  z-index: 0;
  display: none;
}

@media (min-width: 768px) {
  .gwp-connection-line {
    display: block;
  }
}

/* Carousel Track */
.gwp-carousel {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 10;
  padding: 1rem 0.5rem;
  cursor: grab;
}

.gwp-carousel.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.gwp-carousel::-webkit-scrollbar {
  display: none;
}

.gwp-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Cards */
.gwp-card {
  position: relative;
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: center;
  background: #232a3a;
  border: 1px solid rgba(153, 144, 128, 0.15);
  border-radius: 0.5rem;
  padding: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.gwp-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 196, 121, 0.5);
  box-shadow: 0 20px 40px -10px rgba(230, 196, 121, 0.1);
}

.gwp-card-offset {
  margin-top: 4rem;
}

@media (max-width: 767px) {
  .gwp-card-offset {
    margin-top: 0;
  }
}

/* Background Number */
.gwp-number {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  font-family: "Tajawal", sans-serif;
  font-weight: 900;
  font-size: 6rem;
  line-height: 1;
  color: rgba(230, 196, 121, 0.03);
  user-select: none;
  pointer-events: none;
  transition: color 0.3s ease;
}

.gwp-card:hover .gwp-number {
  color: rgba(230, 196, 121, 0.1);
}

/* Card Inner Content */
.gwp-card-inner {
  position: relative;
  z-index: 10;
}

/* Icon Box */
.gwp-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 0.5rem;
  background: #2e3545;
  border: 1px solid rgba(153, 144, 128, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: background 0.3s ease;
}

.gwp-card:hover .gwp-icon-box {
  background: rgba(230, 196, 121, 0.1);
}

.gwp-icon {
  font-family: "Material Symbols Outlined";
  font-size: 30px;
  color: #e6c479;
}

/* Step Title */
.gwp-step-title {
  font-family: "Tajawal", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #dce2f7;
  margin-bottom: 0.75rem;
}

/* Divider */
.gwp-divider {
  width: 32px;
  height: 4px;
  background: #e6c479;
  border-radius: 9999px;
  margin-bottom: 1rem;
  transition: width 0.3s ease;
}

.gwp-card:hover .gwp-divider {
  width: 48px;
}

/* Description */
.gwp-step-desc {
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #b9c8de;
  margin-bottom: 1.5rem;
}

/* CTA */
.gwp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #e6c479;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition:
    gap 0.3s ease,
    color 0.3s ease;
}

.gwp-cta:hover {
  gap: 0.75rem;
  color: #ffdf9b;
}

.gwp-cta-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.gwp-card:hover .gwp-cta-icon {
  transform: translateX(-4px);
}

/* Spacer */
.gwp-spacer {
  min-width: 24px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .gwp-spacer {
    min-width: 48px;
  }
}

/* Progress Dots */
.gwp-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.gwp-dot {
  height: 8px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #232a3a;
  border: 1px solid rgba(153, 144, 128, 0.3);
}

.gwp-dot.active {
  width: 32px;
  background: #e6c479;
  border-color: #e6c479;
}

.gwp-dot:not(.active) {
  width: 8px;
}

.gwp-dot:not(.active):hover {
  background: rgba(230, 196, 121, 0.3);
}

/* Responsive */
@media (max-width: 767px) {
  .gwp-title {
    font-size: 2.25rem;
  }

  .gwp-card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.5rem;
  }

  .gwp-number {
    font-size: 5rem;
  }
}

@media (max-width: 640px) {
  .gwp-section {
    padding: 4rem 1rem;
  }

  .gwp-header {
    margin-bottom: 3rem;
  }
}
/* ============================================
   MATERIAL SYMBOLS SETUP
   ============================================ */

/* Base Material Symbols styling */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* Filled icons */
.material-symbols-outlined.fill-1 {
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* RTL Support for icons */
[dir="rtl"] .material-symbols-outlined.rtl-flip,
[dir="rtl"] .gwp-cta-icon,
[dir="rtl"] .gss-cta-icon {
  transform: scaleX(-1);
}

/* ============================================
   WIDGET 1: Glassmorphism Project Card (gpc-)
   ============================================ */

.gpc-section {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;

  direction: rtl;
}

/* ... (keep existing gpc- styles) ... */

/* ============================================
   WIDGET 2: Services Showcase (gss-)
   ============================================ */

/* ... (keep existing gss- styles) ... */

/* ============================================
   WIDGET 3: Workflow Process (gwp-)
   ============================================ */

.gwp-section {
  position: relative;
  width: 100%;
  padding: 6rem 0;
  overflow: hidden;

  direction: rtl;
}

/* ... (keep existing gwp- styles from previous response) ... */

/* Icon specific sizing for workflow */
.gwp-icon {
  font-family: "Material Symbols Outlined";
  font-size: 30px;
  color: #e6c479;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 48;
}

/* Badge icon */
.gss-badge-icon,
.gpc-badge-icon {
  font-family: "Material Symbols Outlined";
  font-size: 16px;
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* Drag hint icon */
.gwp-drag-icon {
  font-family: "Material Symbols Outlined";
  font-size: 14px;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* CTA icons */
.gwp-cta-icon,
.gss-cta-icon,
.gpc-cta-icon {
  font-family: "Material Symbols Outlined";
  font-size: 14px;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* Navigation icons if needed */
.gpc-nav-icon {
  font-family: "Material Symbols Outlined";
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}
/* ============================================
   WIDGET 4: Stats Trust Bar (gst-)
   ============================================ */

.gst-section {
  position: relative;
  width: 100%;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background: #0a1929;
  direction: rtl;
}

/* Monolith Texture */
.gst-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* Blueprint Pattern */
.gst-blueprint {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(201, 169, 97, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201, 169, 97, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
}

/* Container */
.gst-container {
  max-width: 1536px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Stats Container */
.gst-stats-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  border-radius: 0.5rem;
  border: 1px solid rgba(153, 144, 128, 0.15);
  background: rgba(12, 19, 34, 0.5);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

@media (min-width: 768px) {
  .gst-stats-container {
    flex-direction: row;
  }
}

/* Stat Block */
.gst-stat {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(230, 196, 121, 0.4);
  transition: all 0.5s ease;
  overflow: hidden;
}

.gst-stat:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .gst-stat {
    border-bottom: none;
    border-left: 1px solid rgba(230, 196, 121, 0.4);
  }

  .gst-stat:last-child {
    border-left: none;
  }
}

.gst-stat:hover {
  transform: translateY(-4px);
  background: rgba(20, 27, 43, 0.5);
}

/* Hover Glow */
.gst-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(230, 196, 121, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.gst-stat:hover .gst-glow {
  opacity: 1;
}

/* Icon */
.gst-icon-wrapper {
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

.gst-icon {
  font-family: "Material Symbols Outlined";
  font-size: 36px;
  color: #e6c479;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 48;
}

.gst-icon.fill-1 {
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 48;
}

.gst-stat:hover .gst-icon-wrapper {
  transform: scale(1.1);
}

/* Number */
.gst-number-wrapper {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.gst-number {
  font-family: "Tajawal", sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
  letter-spacing: -0.025em;
  transition: color 0.3s ease;
}

.gst-suffix {
  font-family: "Tajawal", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #e6c479;
}

.gst-stat:hover .gst-number {
  color: #e6c479;
}

/* Label */
.gst-label-wrapper {
  position: relative;
  display: inline-block;
}

.gst-label {
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #94a3b8;
}

.gst-underline {
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 2px;
  background: #e6c479;
  transition: width 0.3s ease;
}

.gst-stat:hover .gst-underline {
  width: 100%;
}

/* Responsive */
@media (max-width: 767px) {
  .gst-section {
    padding: 4rem 1rem;
  }

  .gst-number {
    font-size: 2.5rem;
  }

  .gst-stat {
    padding: 2rem 1rem;
  }
}

/* ============================================
   WIDGET 5: Testimonials & Partners (gtp-)
   ============================================ */

.gtp-section {
  position: relative;
  width: 100%;
  padding: 8rem 1.5rem;
  overflow: hidden;
  background: #0c1322;
  direction: rtl;
}

.gtp-container {
  max-width: 1536px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Header */
.gtp-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gtp-title {
  font-family: "Tajawal", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #dce2f7;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gtp-desc {
  font-family: "Cairo", sans-serif;
  font-size: 1.125rem;
  color: #b9c8de;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   LOGO MARQUEE
   ============================================ */

.gtp-marquee-wrapper {
  position: relative;
  margin-bottom: 6rem;
  overflow: hidden;
}

.gtp-marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 20;
  pointer-events: none;
}

.gtp-fade-right {
  right: 0;
  background: linear-gradient(to left, #0c1322, transparent);
}

.gtp-fade-left {
  left: 0;
  background: linear-gradient(to right, #0c1322, transparent);
}

.gtp-marquee {
  overflow: hidden;
  width: 100%;
}

.gtp-marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  will-change: transform;
}

.gtp-logo {
  height: 48px;
  width: auto;
  opacity: 0.5;
  transition: all 0.5s ease;
  flex-shrink: 0;
}

.gtp-logo.gtp-grayscale {
  filter: grayscale(100%);
}

.gtp-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.gtp-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.gtp-logo-placeholder {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
  color: #94a3b8;
  font-family: "Tajawal", sans-serif;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.gtp-testimonials-wrapper {
  position: relative;
}

.gtp-testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0.5rem;
  cursor: grab;
}

.gtp-testimonials-track.dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.gtp-testimonials-track::-webkit-scrollbar {
  display: none;
}

.gtp-testimonials-track {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Testimonial Card */
.gtp-testimonial {
  position: relative;
  background: #2e3545;
  border: 1px solid rgba(77, 70, 57, 0.15);
  border-radius: 0.5rem;
  padding: 2rem;
  overflow: hidden;
  transition: all 0.5s ease;
  scroll-snap-align: center;
  min-width: 100%;
}

.gtp-testimonial:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 196, 121, 0.3);
  box-shadow: 0 20px 40px -15px rgba(230, 196, 121, 0.1);
}

.gtp-testimonial.gtp-offset {
  margin-top: 2rem;
}

/* Decorative Corner */
.gtp-corner-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: rgba(230, 196, 121, 0.05);
  border-bottom-left-radius: 100%;
  margin-top: -4rem;
  margin-right: -4rem;
  transition: transform 0.5s ease;
}

.gtp-testimonial:hover .gtp-corner-glow {
  transform: scale(1.1);
}

/* Client Header */
.gtp-client-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.gtp-client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.gtp-client-img-wrapper {
  position: relative;
  flex-shrink: 0;
}

.gtp-client-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0c1322;
}

.gtp-client-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #232a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0c1322;
}

.gtp-client-placeholder .material-symbols-outlined {
  font-size: 32px;
  color: #94a3b8;
}

.gtp-video-icon {
  position: absolute;
  bottom: -8px;
  left: -8px;
  background: #0c1322;
  border-radius: 50%;
  padding: 4px;
  border: 1px solid rgba(153, 144, 128, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.gtp-video-icon .material-symbols-outlined {
  font-size: 16px;
  color: #e6c479;
}

.gtp-client-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.gtp-client-name {
  font-family: "Tajawal", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #dce2f7;
  margin: 0;
}

.gtp-client-position {
  font-family: "Cairo", sans-serif;
  font-size: 0.875rem;
  color: #b9c8de;
  margin: 0;
}

/* Verified Badge */
.gtp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(201, 169, 97, 0.1);
  color: #e6c479;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(230, 196, 121, 0.2);
  white-space: nowrap;
}

.gtp-badge .material-symbols-outlined {
  font-size: 14px;
}

/* Quote */
.gtp-quote-wrapper {
  position: relative;
  z-index: 10;
}

.gtp-quote-icon {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  font-family: "Material Symbols Outlined";
  font-size: 3rem;
  color: rgba(153, 144, 128, 0.3);
  transform: scaleX(-1);
  line-height: 1;
}

.gtp-quote {
  font-family: "Cairo", sans-serif;
  font-size: 1.125rem;
  line-height: 1.7;
  color: #d0c5b4;
  font-style: italic;
  margin: 0;
  padding-top: 1rem;
  transition: color 0.3s ease;
}

.gtp-testimonial:hover .gtp-quote {
  color: #e6c479;
}

/* Navigation Dots */
.gtp-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 3rem;
}

.gtp-dot {
  height: 8px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(153, 144, 128, 0.4);
}

.gtp-dot.active {
  width: 32px;
  background: #e6c479;
  box-shadow: 0 0 10px rgba(230, 196, 121, 0.5);
}

.gtp-dot:not(.active) {
  width: 8px;
}

.gtp-dot:not(.active):hover {
  background: rgba(230, 196, 121, 0.6);
}

/* Responsive */
@media (max-width: 1023px) {
  .gtp-testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .gtp-testimonial.gtp-offset {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .gtp-section {
    padding: 4rem 1rem;
  }

  .gtp-title {
    font-size: 1.875rem;
  }

  .gtp-testimonials-track {
    display: flex;
    gap: 1.5rem;
  }

  .gtp-testimonial {
    min-width: 85vw;
    max-width: 85vw;
  }

  .gtp-client-header {
    flex-direction: column;
    gap: 1rem;
  }

  .gtp-marquee-fade {
    width: 3rem;
  }
}
/* ============================================
   WIDGET 6: Luxury Footer (gft-)
   ============================================ */
.gft-section {
  position: relative;
  width: 100%;
  background: #0a1929;
  direction: rtl;
  border-top: 1px solid #e6c479;
}

.gft-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gft-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem 4rem;
  padding-bottom: 3rem;
}

.gft-col {
  display: flex;
  flex-direction: column;
}

.gft-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 1.5rem;
  display: block;
}

.gft-desc {
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 320px;
}

/* Headings */
.gft-heading {
  font-size: 1.25rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.gft-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 3px;
  background: rgba(230, 196, 121, 0.4);
  border-radius: 2px;
}

/* Links */
.gft-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.gft-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.gft-link:hover {
  color: #e6c479;
  transform: translateX(-4px);
}

.gft-link-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.gft-link:hover .gft-link-icon {
  transform: scaleX(-1); /* RTL friendly flip */
}

/* Contact */
.gft-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.gft-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.gft-contact-item:hover {
  color: #e6c479;
}

.gft-contact-icon {
  font-size: 18px;
  color: #e6c479;
}

/* Social */
.gft-social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 0.5rem;
}

.gft-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(153, 144, 128, 0.2);
  color: #94a3b8;
  transition: all 0.3s ease;
}

.gft-social-link:hover {
  background: #e6c479;
  border-color: #e6c479;
  color: #0a1929;
  transform: translateY(-3px);
}

.gft-social-icon {
  font-size: 22px;
}

/* Copyright */
.gft-copyright {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(230, 196, 121, 0.15);
  background: #07111f;
  text-align: center;
}

.gft-copyright-text {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive */
@media (max-width: 1023px) {
  .gft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .gft-col-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .gft-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .gft-section {
    padding: 3rem 0;
  }
  .gft-container {
    padding: 0 1rem;
  }
  .gft-heading::after {
    right: 50%;
    transform: translateX(50%);
  }
  .gft-col-brand {
    text-align: center;
    align-items: center;
  }
  .gft-social-list {
    justify-content: center;
  }
}
/* ============================================
   WIDGET 6: CTA Section (gcta-)
   ============================================ */
.gcta-section {
  position: relative;
  width: 100%;
  min-height: 819px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0c1322;
  direction: rtl;
}

/* Background Image */
.gcta-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gcta-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 0.6s ease;
}

/* Gradient Overlays */
.gcta-gradient {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
}

.gcta-gradient-top {
  background: rgba(12, 19, 34, 0.9);
  background: linear-gradient(
    to bottom,
    rgba(12, 19, 34, 0.9) 0%,
    transparent 60%
  );
}

.gcta-gradient-bottom {
  background: rgba(12, 19, 34, 0.75);
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(12, 19, 34, 0.8) 100%
  );
}

/* Noise Overlay */
.gcta-noise {
  position: absolute;
  inset: 0;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
}

/* Content Container */
.gcta-container {
  position: relative;
  z-index: 20;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Headline */
.gcta-headline {
  font-family: "Tajawal", sans-serif;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #dce2f7;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  max-width: 720px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Buttons Container */
.gcta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  width: 100%;
}

/* Primary Button */
.gcta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #e6c479;
  color: #3f2e00;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(230, 196, 121, 0.15);
}

.gcta-btn-primary:hover {
  background: #c9a961;
  box-shadow: 0 0 30px rgba(230, 196, 121, 0.3);
}

.gcta-btn-primary .gcta-btn-icon {
  transition: transform 0.3s ease;
}

.gcta-btn-primary:hover .gcta-btn-icon {
  transform: translateX(-4px);
}

/* Secondary Button */
.gcta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(25, 31, 47, 0.3);
  border: 1px solid rgba(77, 70, 57, 0.3);
  color: #e6c479;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.gcta-btn-secondary:hover {
  background: #e6c479;
  color: #3f2e00;
  border-color: #e6c479;
}

/* Trust Bar */
.gcta-trust-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(20, 27, 43, 0.5);
  border: 1px solid rgba(77, 70, 57, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  backdrop-filter: blur(4px);
}

.gcta-trust-item {
  font-family: "Cairo", sans-serif;
  font-size: 0.875rem;
  color: #b9c8de;
}

.gcta-trust-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(230, 196, 121, 0.5);
}

/* RTL Icon Flip */
[dir="rtl"] .gcta-btn-primary .gcta-btn-icon,
[dir="rtl"] .gcta-btn-secondary .gcta-btn-icon {
  transform: scaleX(-1);
}

.gcta-btn-primary:hover [dir="rtl"] .gcta-btn-icon {
  transform: scaleX(-1) translateX(4px);
}

/* Responsive */
@media (max-width: 767px) {
  .gcta-section {
    min-height: auto;
    padding: 4rem 1rem;
  }

  .gcta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gcta-btn-primary,
  .gcta-btn-secondary {
    width: 100%;
    max-width: 320px;
  }

  .gcta-trust-bar {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
  }

  .gcta-trust-dot {
    display: none;
  }
}
/* ============================================
   WIDGET 7: Projects Bento Grid (gpb-)
   ============================================ */
/* ============================================
   PROJECTS BENTO GRID - NEW DESIGN
   ============================================ */
.gpb-section {
  position: relative;
  width: 100%;
  padding: 6rem 1.5rem;
  background: #0a0e1a;
  direction: rtl;
}

.gpb-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Header */
.gpb-header {
  text-align: right;
  margin-bottom: 3rem;
}

.gpb-title {
  font-family: "Tajawal", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #dce2f7;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gpb-desc {
  font-family: "Cairo", sans-serif;
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 600px;
  line-height: 1.7;
}

/* Filter Buttons */
.gpb-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
  justify-content: flex-end;
}

.gpb-filter-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  background: transparent;
  border: 1px solid rgba(153, 144, 128, 0.3);
  color: #dce2f7;
  font-family: "Cairo", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gpb-filter-btn:hover,
.gpb-filter-btn.active {
  background: #c9a961;
  border-color: #c9a961;
  color: #0a0e1a;
}

/* Grid Layout */
.gpb-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gpb-grid-item-large {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.gpb-grid-item {
  grid-column: span 4;
  grid-row: span 2;
}

/* Card Base */
.gpb-card {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #141b2b;
  height: 100%;
  transition: all 0.5s ease;
  border: 1px solid rgba(77, 70, 57, 0.15);
}

.gpb-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 196, 121, 0.3);
  box-shadow: 0 20px 40px -10px rgba(230, 196, 121, 0.1);
}

.gpb-card-featured {
  border: 1px solid rgba(230, 196, 121, 0.3);
  box-shadow: 0 0 40px rgba(230, 196, 121, 0.06);
}

/* Image Wrapper */
.gpb-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.gpb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gpb-card:hover .gpb-img {
  transform: scale(1.05);
}

.gpb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, 0.95) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Card Content */
.gpb-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 10;
}

.gpb-badge {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(201, 169, 97, 0.2);
  color: #e6c479;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 1rem;
  border: 1px solid rgba(230, 196, 121, 0.2);
}

.gpb-card-title {
  font-family: "Tajawal", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #dce2f7;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.gpb-excerpt {
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.gpb-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gpb-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #b9c8de;
}

.gpb-meta-item .material-symbols-outlined {
  font-size: 1.125rem;
  color: #e6c479;
}

/* Featured Badge */
.gpb-featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.375rem 1rem;
  background: #c9a961;
  color: #0a0e1a;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 9999px;
  z-index: 20;
}

/* Load More Button */
.gpb-load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.gpb-load-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: #232a3a;
  color: #e6c479;
  border: 1px solid rgba(153, 144, 128, 0.2);
  border-radius: 0.5rem;
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gpb-load-more:hover {
  background: #2e3545;
  transform: translateY(-2px);
}

.gpb-load-more .material-symbols-outlined {
  font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 1023px) {
  .gpb-grid {
    grid-template-columns: 1fr;
  }

  .gpb-grid-item-large,
  .gpb-grid-item {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gpb-image-wrapper {
    min-height: 300px;
  }

  .gpb-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .gpb-section {
    padding: 4rem 1rem;
  }

  .gpb-filters {
    justify-content: center;
  }

  .gpb-header {
    text-align: center;
  }

  .gpb-desc {
    margin: 0 auto;
  }
}

/* Filter Animation */
.gpb-grid-item.filtered {
  display: none;
}