/*
Theme Name: Hagerty
Version: 1.2
*/

/* ================================
   TABLE OF CONTENTS
   ================================
   1. CSS Variables
   2. Reset & Base
   3. Typography
   4. Header & Navigation
   5. Menu Overlay
   6. Buttons & Forms
   7. Hero & Sections
   8. Service Pages
   9. Utility Pages
   10. Responsive Design
   11. Utilities & Helpers
*/

/* ================================
   1. CSS VARIABLES
   ================================ */
:root {
  /* Colors */
  --color-primary: #e65616;
  --color-primary-hover: #ff7a3a;
  --color-text-dark: #000000;
  --color-text-light: #ffffff;
  --color-bg-dark: #000;
  --color-bg-section: #1a1a1e;
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-light: rgba(0, 0, 0, 0.1);
  --color-overlay-light: rgba(255, 255, 255, 0.85);
  --color-overlay-dark: rgba(26, 26, 30, 0.85);

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;

  /* Typography */
  --font-family: 'Poppins', sans-serif;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-2xl: 32px;
  --font-size-3xl: 48px;

  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* Z-Index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-fixed: 1000;
  --z-modal: 10000;
}

/* ================================
   2. RESET & BASE
   ================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  background: var(--color-bg-dark);
}

body {
  font-family: var(--font-family);
  overflow-x: hidden;
  color: var(--color-text-light);
}

/* ================================
   4. HEADER & NAVIGATION
   ================================ */


.site-header {
  position: fixed;
  top: 15px;
  left: 15px;
  right: 15px;
  z-index: var(--z-modal);
  padding: 18px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: var(--border-radius-md);
  transition: background var(--transition-base), backdrop-filter var(--transition-base), box-shadow var(--transition-base), opacity 0.3s ease, visibility 0.3s ease;
}

.site-header.hidden {
  opacity: 0;
  visibility: hidden;
}

.site-header.scrolled {
  background: var(--color-overlay-dark);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-logo {
  display: block;
  height: 30px;
}

.header-logo img {
  height: 100%;
  width: auto;
  display: block;
}

/* Hamburger Button - Clean 3 lines, no border */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  transition: all var(--transition-base);
}

.hamburger:hover span {
  background: var(--color-primary-hover);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-light);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Dark theme for hamburger on light sections */
.hamburger.dark span {
  background: var(--color-text-light);
}

.hamburger.dark:hover span {
  background: var(--color-primary-hover);
}

/* ================================
   5. MENU OVERLAY
   ================================ */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-overlay-light);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
  overflow-y: auto;
  overscroll-behavior: contain;
}

   .about-section::before,
  .about-section::after,
  .info1-section::before,
  .info1-section::after,
  .info2-section::before,
  .info2-section::after,
  .reviews-section::before,
  .reviews-section::after,
  .services-grid-section::before,
  .services-grid-section::after,
    .mtt-intro::before,
  .mtt-intro::after,
  .news-section::before,
  .news-section::after,
  .mtt-team-grid::after,
  .mtt-team-grid::before,
  .seo-page-info-1::after,
  .seo-page-info-1::before,
    .seo-page-info-2::after,
  .seo-page-info-2::before,
    .seo-page-info-3::after,
  .seo-page-info-3::before,
  .ppc-page-info-1::after,
  .ppc-page-info-1::before,
  .ppc-page-info-2::after,
  .ppc-page-info-2::before,
  .email-page-info-3::before,
  .email-page-info-3::after,
  .webdesign-page-info-3::after,
  .webdesign-page-info-3::before,
  .webdesign-page-info-2::before,
  .webdesign-page-info-2::after,
  .webdesign-page-info-1::before,
  .webdesign-page-info-1::after,
  .team-section::before,
  .team-section::after {
display:none; }

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu-close-btn {
  position: fixed;
  top: 30px;
  right: 40px;
  width: 45px;
  height: 45px;
  border: 2px solid var(--color-text-dark);
  border-radius: var(--border-radius-sm);
  background: transparent;
  cursor: pointer;
  z-index: var(--z-dropdown);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-dark);
  font-size: 30px;
  transition: all var(--transition-base);
}

.menu-close-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: rotate(90deg);
}

.menu-content {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 25px 0px 10px;
  min-height: 100vh;
}

.menu-logo {
  margin-bottom: var(--spacing-3xl);
}

.menu-logo img {
  height: 30px;
  width: auto;
}

/* Desktop Menu Grid */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-3xl);
}

.menu-column h3 {
  color: var(--color-text-dark);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}

.menu-column.contact-column h3 {
  color: var(--color-primary);
}

.menu-column ul {
  list-style: none;
}

.menu-column ul li {
  margin-bottom: 15px;
}

.menu-column ul li a {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Lock body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

.menu-column ul li a:hover {
  color: #e65616;
  transform: translateX(5px);
}

.menu-address {
  margin-top: 40px;
}

.menu-address h4 {
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.menu-address p {
  color: #000000;
  font-size: 15px;
  line-height: 1.6;
}

.menu-address a {
  text-decoration: none;
}

/* Menu Contact Image */
/* Menu Contact Slideshow - Desktop */
.menu-contact-slideshow {
  position: relative;
  width: 100%;
  max-width: 200px;
  height: 200px;
  margin-bottom: 25px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid #e65616;
}

.menu-contact-slideshow .menu-slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: block;
}

/* Service cards: force consistent button position at bottom */
.services-grid-container {
  align-items: stretch;
}

.services-grid-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Prefer pushing the footer wrapper down (if present) */
.services-grid-card .services-grid-footer {
  margin-top: auto;
}

/* Fallback: if there is no footer wrapper and the button/link is a direct child */
.services-grid-card > a,
.services-grid-card > .btn,
.services-grid-card > .button {
  margin-top: auto;
}


.menu-contact-slideshow .menu-slideshow-slide.active {
  opacity: 1;
}

.menu-contact-slideshow .menu-slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.menu-contact-slideshow .menu-slideshow-slide:hover img {
  transform: scale(1.05);
}

/* Mobile Menu Contact Slideshow */
.menu-mobile-contact-slideshow {
  display: none;
  position: relative;
  width: 100%;
  max-width: 180px;
  height: 180px;
  margin: 25px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid #e65616;
}

.menu-mobile-contact-slideshow .menu-slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: block;
}

.menu-mobile-contact-slideshow .menu-slideshow-slide.active {
  opacity: 1;
}

.menu-mobile-contact-slideshow .menu-slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Legacy styles - keep for backwards compatibility */
.menu-contact-image {
  display: none; /* Hidden - replaced by slideshow */
}

.menu-contact-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.menu-contact-image:hover img {
  transform: scale(1.05);
}

/* Mobile Menu Contact Image - hidden on mobile */
.menu-mobile-contact-image {
  display: none;
}

.menu-mobile-contact-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile Menu Styles */
.menu-mobile {
  display: none;
}

.menu-mobile-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.menu-mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-mobile-toggle-text {
  flex: 1;
  padding: 20px 0;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  transition: color var(--transition-base);
}

.menu-mobile-toggle-text:hover {
  color: #e65616;
}

.menu-mobile-toggle-arrow {
  padding: 20px 12px 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.menu-mobile-toggle .menu-arrow {
  color: rgba(0, 0, 0, 0.5);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.menu-mobile-item.open .menu-mobile-toggle .menu-arrow {
  transform: rotate(180deg);
}

.menu-mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.menu-mobile-item.open .menu-mobile-submenu {
  max-height: 500px;
}

.menu-mobile-submenu a {
  display: block;
  padding: 12px 0 12px 20px;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.menu-mobile-submenu a:hover {
  color: #e65616;
  padding-left: 25px;
}

.menu-mobile-link {
  display: block;
  padding: 15px 0;
  color: #333333;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.menu-mobile-contact {
  padding-top: 30px;
  text-align: center;
}

.menu-mobile-contact h4 {
  color: #e65616;
  font-size: 18px;
  margin-bottom: 15px;
}

.menu-mobile-contact p,
.menu-mobile-contact a {
  color: #666666;
  font-size: 15px;
  line-height: 1.8;
  text-decoration: none;
  display: block;
}

/* Menu responsive */
@media (max-width: 1024px) {
  .menu-grid {
    display: none;
  }

  .menu-mobile {
    display: block;
  }

  .menu-contact-slideshow {
    display: none;
  }

  .menu-mobile-contact-slideshow {
    display: block;
  }
}


.mtt-hero .mtt-hero-content h1 .orange-text {
  color: #e65616 !important;
}
.mtt-hero .mtt-hero-content h1 .white-text {
  color: #ffffff !important;
}
.about-hero .about-hero-content h1 .orange-text {
  color: #e65616 !important;
}
.about-hero .about-hero-content h1 .white-text {
  color: #ffffff !important;
}

/* Only the active slide should be clickable */
.menu-contact-slideshow .menu-slideshow-slide,
.menu-mobile-contact-slideshow .menu-slideshow-slide {
  pointer-events: none;
}

.menu-contact-slideshow .menu-slideshow-slide.active,
.menu-mobile-contact-slideshow .menu-slideshow-slide.active {
  pointer-events: auto;
}


/* ==========================
   HERO SECTION
   ========================== */
.hero {
  background: #000000;
  min-height: 100vh;
  padding: 200px 5% 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

span.hero-label.animate-fade-in.is-visible {
  opacity: 1!important;
}

span.wwa-hero-label.animate-fade-in.is-visible {
  opacity: 1!important;
}

span.ow-hero-label.animate-fade-in.is-visible {
  opacity: 1!important;
}

span.news-page-hero-label.animate-fade-in.is-visible {
  opacity: 1!important;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-video,
.hero-background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-video-overlay,
.hero-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(28px, 6vw, 120px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 50px;
  white-space: nowrap;
}

/* Ensure hero h1 wraps only at the <br> tag */
@media (max-width: 600px) {
  .hero h1 {
    white-space: normal;
    font-size: clamp(24px, 7vw, 50px);
  }
}

.hero h1 .white-text {
  color: #ffffff;
}
.hero h1 .orange-text {
  color: #e56616;
}


.highlight-text-italic {
  color: #e65616;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  display: inline-block;
}
.highlight-text-italic-white {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  display: inline-block;
}

/* ==========================
   UNIFIED BUTTON STYLES
   ========================== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #e65616;
  color: white;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #ff6a2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 86, 22, 0.3);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-btn:hover svg {
  transform: translateX(5px);
}

/* White/Outline button variant */
.cta-btn-white,
.cta-btn-outline {
  background: transparent;
  color: #e65616;
  border: 2px solid #e65616;
}

.cta-btn-white:hover,
.cta-btn-outline:hover {
  background: rgba(230, 86, 22, 0.1);
  color: #ff6a2c;
  border-color: #ff6a2c;
  box-shadow: 0 10px 25px rgba(230, 86, 22, 0.15);
}

/* White/Outline button variant */
.cta-btn-white-1,
.cta-btn-outline-1 {
  background: black;
  color: white;
  border: 2px solid black
}

.cta-btn-white-1:hover,
.cta-btn-outline-1:hover {
  background: white;
  color: #e65616;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}


/* Dark button variant */
.cta-btn-dark {
  background: #333;
  color: white;
}

.cta-btn-dark:hover {
  background: #1a1a1a;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Legacy support - old class names */
.cta-button {
  background: #e65616;
  color: white;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  background: #ff6a2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 86, 22, 0.3);
}

/* Hero Split Button */
.hero-cta-wrapper {
  display: inline-block;
  position: relative;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#siteMain {
  flex: 1;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  background: #e65616;
  color: white;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  margin-bottom: 0;
  overflow: visible;
  transition: all 0.3s ease;
  gap: 12px;
}

.hero-cta-btn .btn-text {
  padding: 24px 60px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-cta-btn .btn-arrow {
  width: 0;
  padding: 24px 0;
  background: #d64d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-cta-btn .btn-arrow svg {
  width: 24px;
  height: 24px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease 0.1s;
}

.hero-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 86, 22, 0.3);
  background: #ff6a2c;
}

.hero-cta-btn:hover .btn-text {
  padding: 24px 40px;
}

.hero-cta-btn:hover .btn-arrow {
  width: 70px;
  padding: 24px 20px;
}

.hero-cta-btn:hover .btn-arrow svg {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================
   SCROLL ANIMATIONS
   ========================== */
.animate-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-left.is-visible {
  opacity: 1;
  z-index: 1;
  transform: translateX(0);
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-scale-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ==========================
   SERVICE CARDS SECTION
   ========================== */
.service-cards-section {
  padding: 100px 5%;
  background: #ffffff;
  display: none;
}

.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.services-grid-bottom-cta {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.services-grid-footer {
  text-align: center;
  margin-top: 30px;
}

.services-grid-footer-button {
  display: inline-block;
  background: #e65616;
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-grid-footer-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}


.service-card {
  width: 100%;
  max-width: 400px;
  height: 500px;
  position: relative;
  cursor: pointer;
  perspective: 1000px;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.service-card.flipped .service-card-inner {
  transform: rotateY(180deg);
}

.service-card-front,
.service-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-card-front::before,
.service-card-back::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
  pointer-events: none;
  border-radius: 20px;
}

.service-card-front h3 {
  position: relative;
  z-index: 2;
  font-size: 34px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  text-align: center;
}

.service-card-back {
  transform: rotateY(180deg);
}

.service-card-back::before {
  background: rgba(0, 0, 0, 0.75);
}

.service-card:nth-child(1) .service-card-front,
.service-card:nth-child(1) .service-card-back {
  background-image: url('/wp-content/uploads/2025/11/digital-marketing-2.webp');
}

.service-card:nth-child(2) .service-card-front,
.service-card:nth-child(2) .service-card-back {
  background-image: url('/wp-content/uploads/2025/11/web-design-bristol-1x1-1.jpg');
}

.service-card:nth-child(3) .service-card-front,
.service-card:nth-child(3) .service-card-back {
  background-image: url('/wp-content/uploads/2025/11/What_is_E_commerce_and_What_are_its_Applications_2_d2eb0d4402-scaled.webp');
}

.service-card-back h3 {
  position: relative;
  z-index: 2;
  font-size: 30px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
  text-align: center;
}

.service-card-back p {
  position: relative;
  z-index: 2;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 25px;
  text-align: center;
}

.service-button {
  position: relative;
  z-index: 2;
  background: white;
  color: #e65616;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.service-button:hover {
  transform: scale(1.05);
  background: #e65616;
  color: white;
  border-color: white;
}

/* Decorative rectangles - desktop only */
.team-section::before {
  content: '';
  position: absolute;
  bottom: -220px;
  left: 220px;
  width: 150px;
  height: 530px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.team-section::after {
  content: '';
  position: absolute;
  bottom: -420px;
  left: -10px;
  width: 150px;
  height: 950px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 9s ease-in-out infinite reverse;
}

/* ==========================
   LOGO MARQUEE
   ========================== */
#logo-marquee {
  --size: 50px;
  --gap: 100px;
  --duration: 20s;
  --distance: 1000px;
  width: 100%;
  height: 120px;
  overflow: hidden;
  position: relative;
  background: #ffffff;
  display: flex;
  align-items: center;
  z-index: 3;
}

#logo-marquee .marquee-track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  width: max-content;
  will-change: transform;
  animation: marquee-scroll var(--duration) linear infinite;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--distance))); }
}

#logo-marquee .marquee-slide {
  flex: 0 0 auto;
  height: var(--size);
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#logo-marquee .marquee-slide img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0) opacity(0.6);
  transition: filter 0.3s ease;
}


/* ==========================
   CASE STUDIES SECTION
   ========================== */
.case-studies-section {
  padding: 140px 5%;
  background: #f8f8f8;
  position: relative;
  overflow: visible;
}

.case-studies-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.section-heading {
  font-size: 80px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 80px;
  text-align: center;
}

.section-heading .black-text {
  color: #000;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
}

.case-study-card {
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.case-study-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img {
  transform: scale(1.1);
}

.case-study-content {
  padding: 50px;
}

.case-study-content h3 {
  font-size: 36px;
  font-weight: 800;
  color: #333;
  margin-bottom: 20px;
}

.case-study-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 35px;
}

.case-study-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 35px;
  padding: 30px 0;
  border-top: 2px solid #f0f0f0;
  border-bottom: 2px solid #f0f0f0;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 900;
  color: #e65616;
  margin-bottom: 10px;
}

.stat-label {
  display: block;
  font-size: 16px;
  color: #666;
  font-weight: 600;
}

.case-study-link {
  color: #e65616;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.case-study-link:hover {
  color: #d64d0d;
}

/* Case Studies CTA */
.case-studies-cta {
  text-align: center;
  margin-top: 60px;
}

.case-studies-cta-btn {
  display: inline-block;
  background: #e65616;
  color: white;
  padding: 18px 45px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.case-studies-cta-btn:hover {
  background: #d64d0d;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.3);
}

/* ==========================
   ABOUT SECTION
   Decorative rectangles - HIDDEN ON MOBILE
   ========================== */
.about-section {
  padding: 140px 5%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Decorative rectangles - desktop only */
.about-section::before {
  content: '';
  position: absolute;
  top: -875px;
  right: -389px;
  width: 150px;
  height: 1430px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(90deg);
  z-index: 0;
  animation: float 5s ease-in-out infinite;
}

.about-section::after {
  content: '';
  position: absolute;
  top: -640px;
  right: -110px;
  width: 150px;
  height: 1050px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(-20px); }
}

.about-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-heading {
  font-size: 80px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 100px;
  text-align: center;
}

.about-heading .black-text {
  color: #000;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-images {
  position: relative;
  height: 600px;
}

.about-image-main {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.about-image-overlay {
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 70%;
  height: 350px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 2;
  border: 8px solid white;
}

.about-image-main img,
.about-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-images:hover .about-image-main img,
.about-images:hover .about-image-overlay img {
  transform: scale(1.05);
}

.about-text {
  padding: 30px;
}

.about-text p {
  font-size: 22px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.about-text .cta-button {
  margin-bottom: 0;
}

/* ==========================
   TEAM SECTION
   ========================== */
.team-section {
  padding: 140px 5%;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.team-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.team-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.team-intro p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

/* Team Deck - Desktop */
.team-deck {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  padding: 0 50px;
}

.team-card {
  position: relative;
  width: 280px;
  height: 380px;
  border-radius: 20px;
  overflow: visible;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  flex-shrink: 0;
  background: #f5ebe0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.team-card:nth-child(1) { margin-left: 0; z-index: 1; transform: rotate(-8deg); }
.team-card:nth-child(2) { margin-left: -80px; z-index: 2; transform: rotate(-4deg); }
.team-card:nth-child(3) { margin-left: -80px; z-index: 3; transform: rotate(-1deg); }
.team-card:nth-child(4) { margin-left: -80px; z-index: 4; transform: rotate(1deg); }
.team-card:nth-child(5) { margin-left: -80px; z-index: 5; transform: rotate(3deg); }
.team-card:nth-child(6) { margin-left: -80px; z-index: 6; transform: rotate(5deg); }
.team-card:nth-child(7) { margin-left: -80px; z-index: 7; transform: rotate(8deg); }

.team-card:hover,
.team-card.auto-active {
  transform: scale(1.15) rotate(0deg) translateY(-30px) !important;
  z-index: 100 !important;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.team-card-image {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

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

.team-card:hover .team-card-image img,
.team-card.auto-active .team-card-image img {
  transform: scale(1.05);
}

.team-card-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-image video,
.team-card.auto-active .team-card-image video {
  transform: scale(1.05);
}

.team-card.auto-active img {
  display: none;
}
.team-card:hover img {
  display: none;
}
.team-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  border-radius: 0 0 20px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.team-card:hover .team-card-overlay,
.team-card.auto-active .team-card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.team-card-name {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team-card-role {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 15px;
}

.more-about-btn {
  display: inline-block;
  background: #e65616;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.more-about-btn:hover {
  background: #d64d0d;
  transform: scale(1.05);
}

.team-cta {
  text-align: center;
  margin-top: 60px;
}

.team-cta-btn {
  display: inline-block;
  background: #e65616;
  color: white;
  padding: 18px 45px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-cta-btn:hover {
  background: #e65616;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.3);
}

/* Mobile Team Carousel */
.team-mobile-carousel {
  display: none;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.team-mobile-slider {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: visible;
}

.team-mobile-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 400px;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.team-mobile-card.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.team-mobile-card-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.team-mobile-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-mobile-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.team-mobile-card-name {
  color: white;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-mobile-card-role {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  margin-bottom: 20px;
}

.team-mobile-watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #333;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.team-mobile-watch-btn:hover {
  background: #e65616;
  color: white;
}

/* Team Mobile Dots - Perfect Circles with Tooltip */
.team-mobile-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.team-mobile-dot {
  position: relative;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  border: 3px solid #e0e0e0;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

.team-mobile-dot.active {
  border-color: #e65616;
  opacity: 1;
  transform: scale(1.2);
}

.team-mobile-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Team Mobile Dot Tooltip */
.team-mobile-dot-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #333;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
}

.team-mobile-dot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
}

.team-mobile-dot:hover .team-mobile-dot-tooltip,
.team-mobile-dot.active .team-mobile-dot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ==========================
   TEAM MODAL - IMAGE COVERS LEFT SECTION
   ========================== */
.team-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.team-modal.active {
  opacity: 1;
  visibility: visible;
}

.team-modal-content {
  background: #ffffff;
  border-radius: 25px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-modal.active .team-modal-content {
  transform: scale(1) translateY(0);
}

.team-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.team-modal-close:hover {
  background: #e65616;
  color: #ffffff;
  transform: rotate(90deg);
}

.team-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.team-modal-media {
  position: relative;
  overflow: hidden;
  background: #e8dfd0;
}

.team-modal-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.team-modal-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: none;
}

.team-modal-video.active {
  display: block;
}

.team-modal-info {
  padding: 50px 40px;
  overflow-y: auto;
  max-height: 90vh;
}

.team-modal-info h3 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1e;
  margin: 0 0 8px 0;
}

.team-modal-title {
  font-size: 16px;
  color: #e65616;
  font-weight: 600;
  margin: 0 0 25px 0;
}

.team-modal-bio {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.team-modal-bio p {
  margin-bottom: 15px;
}

.team-modal-bio p:last-child {
  margin-bottom: 0;
}

.team-modal-socials {
  display: flex;
  gap: 15px;
}

.team-modal-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  transition: all 0.3s ease;
}

.team-modal-socials a:hover {
  background: #e65616;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ==========================
   LONG CTA SECTION - Before Reviews
   ========================== */
.long-cta-section {
  padding: 140px 5%;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.long-cta-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.long-cta-content {
  text-align: center;
}

.long-cta-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.long-cta-heading {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}

.long-cta-heading .black-text {
  color: #000;
}

.long-cta-text {
  font-size: 20px;
  line-height: 1.8;
  color: #666;
  max-width: 800px;
  margin: 0 auto 60px;
}

.long-cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.long-cta-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}

.long-cta-feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: linear-gradient(135deg, #e65616 0%, #ff8c42 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.long-cta-feature-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.long-cta-feature-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.long-cta-feature-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.long-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.long-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.long-cta-btn-primary {
  background: #e65616;
  color: white;
}

.long-cta-btn-primary:hover {
  background: #d64d0d;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.3);
}

.long-cta-btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.long-cta-btn-primary:hover svg {
  transform: translateX(5px);
}

.long-cta-btn-secondary {
  background: #333;
  color: white;
}

.long-cta-btn-secondary:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.long-cta-btn-secondary svg {
  width: 20px;
  height: 20px;
}

/* ==========================
   REVIEWS SECTION
   ========================== */
.reviews-section {
  background: #f8f8f8;
  padding: 140px 5%;
  position: relative;
  overflow: visible;
  margin-bottom: 0;
}

.reviews-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  padding: 0 20px;
}

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.reviews-left {
  color: #000000;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.reviews-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 0px;
  
}

.reviews-left h2 .highlight-text-italic {
  display: block;
  font-style: italic;
  color: #e65616;
  font-size: 56px;
  
}

.star-rating {
  font-size: 48px;
  color: #FBC02D;
  letter-spacing: 8px;
 
  display: flex;
  justify-content: center;
 
}

.star-rating .star {
  display: inline-block;
}

.review-count {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  margin-bottom: 10px!important;
}

.review-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.review-link:hover {
  color: #e65616;
}

.google-logo {
  width: 150px!important;
  height: auto;
  display: block;
}

.reviews-right {
  width: 100%;
}

/* TrustIndex Widget Styling */
.reviews-right .tiw-wrapper {
  width: 100% !important;
  max-width: 100% !important;
}

.reviews-right .tiw-header {
  display: none !important;
}

.reviews-right .tiw-box {
  background: #ffffff !important;
  border-radius: 12px !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  padding: 25px !important;
}

.reviews-right .tiw-boxes {
  display: grid !important;
  gap: 20px !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  width: 100% !important;
}

.reviews-right .tiw-star {
  color: #FBC02D !important;
}

.reviews-right .tiw-text {
  color: #333 !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

.reviews-right .tiw-author {
  color: #333 !important;
  font-weight: 600 !important;
  margin-top: 15px !important;
}

.reviews-right .tiw-date {
  color: #666 !important;
  font-size: 12px !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .reviews-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .reviews-left {
    text-align: center;
    padding: 20px 0;
  }

  .reviews-left h2 {
    font-size: 40px;
  }

  .reviews-left h2 .highlight-text-italic {
    font-size: 44px;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 50px 5%;
  }

.case-study-link {
  justify-content: center;
}

  .careers-opportunity-title {
    text-align: center!important;
}

.careers-opportunity-header {
  display: block!important;
  align-items: center;
  justify-items: center;
}

a.careers-opportunity-apply-btn {
  margin-top: 15px;
}

  .reviews-layout {
    gap: 30px;
  }

  .reviews-left h2 {
    font-size: 32px;
  }

  .reviews-left h2 .highlight-text-italic {
    font-size: 36px;
    margin-top: 8px;
  }

  .star-rating {
    font-size: 36px;
    letter-spacing: 6px;
    margin-bottom: 20px;
  }

  .review-count {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .reviews-right .tiw-boxes {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================
   SERVICES GRID SECTION
   ========================== */
.services-grid-section {
  padding: 140px 5%;
  background: #ffffff;
  position: relative;
  overflow: visible;
}

/* Decorative rectangles - desktop only */
.services-grid-section::before {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -80px;
  width: 150px;
  height: 850px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.services-grid-section::after {
  content: '';
  position: absolute;
  bottom: -280px;
  left: 50px;
  width: 150px;
  height: 600px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 9s ease-in-out infinite reverse;
}

.services-grid-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-grid-heading {
  font-size: 64px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 100px;
  color: #000;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.service-grid-card {
  background: white;
  border-radius: 25px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-grid-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e65616;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-grid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(230, 86, 22, 0.15);
}

.service-grid-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 35px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-grid-card h3 {
  font-size: 30px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.service-grid-card:hover h3 {
  color: #e65616;
}

.service-grid-card p {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 30px;
}

.service-grid-card .service-button {
  background: #e65616;
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: 2px solid #e65616;
}

.service-grid-card .service-button:hover {
  background: white;
  color: #e65616;
}

/* ==========================
   CTA SECTION
   ========================== */
.cta-section {
  background: #f8f8f8;
  padding: 120px 5%;
  position: relative;
}

.cta-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.cta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 1024px) {
  .cta-cards {
    grid-template-columns: 1fr;
  }
}

.cta-card {
  border-radius: 25px;
  padding: 60px 50px;
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.cta-card-light {
  background: #f8f8f8;
}

.cta-card-blue {
  background: #e65616;
  color: white;
}

.cta-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: black;
  margin-bottom: 20px;
}

.cta-card-blue .cta-label {
  color: white;
}

.cta-card h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 25px;
  color: black;
}

.cta-card-blue h2 {
  color: white;
}

.cta-card p {
  font-size: 20px;
  line-height: 1.7;
  color: black;
  margin-bottom: 30px;
}

.cta-card .cta-button {
  display: inline-block;
  padding: 18px 40px;
  font-size: 18px;
  margin-top: 10px;
}

.cta-card-blue p {
  color: rgba(255, 255, 255, 0.95);
}

.cta-button-white {
  background: white;
  color: black;
}

.cta-button-white:hover {
  background: #d3d3d3;
}

/* ==========================
   INFO SECTIONS
   ========================== */
.info1-section,
.info2-section {
  padding: 140px 5%;
  position: relative;
  overflow: visible;
}

.info1-section { background: #f8f8f8; }
.info2-section { background: #ffffff; }

/* Decorative rectangles - desktop only */
.info1-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: 10px;
  width: 150px;
  height: 950px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(45deg);
  z-index: 1;
  animation: float 7s ease-in-out infinite;
}

.info1-section::after {
  content: '';
  position: absolute;
  bottom: -240px;
  right: -40px;
  width: 150px;
  height: 860px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 1;
  overflow: visible;
  animation: float 9s ease-in-out infinite reverse;
}

.info2-section::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 10px;
  width: 150px;
  height: 656px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(145deg);
  z-index: 1;
  overflow: visible;
  animation: float 7s ease-in-out infinite;
}

.info2-section::after {
  content: '';
  position: absolute;
  bottom: -460px;
  left: 0px;
  width: 150px;
  height: 1061px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(145deg);
  z-index: 1;
  overflow: visible;
  animation: float 9s ease-in-out infinite reverse;
}

.info1-container,
.info2-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.info1-heading,
.info2-heading {
  font-size: 80px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 100px;
  text-align: center;
}

.info1-heading .black-text,
.info2-heading .black-text {
  color: #000;
}

.info1-content,
.info2-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  
  align-items: center;
  justify-items: center;
}

.info1-image,
.info2-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  width: 500px;
  height: 500px;
  max-width: 100%;
}

.info1-image:hover,
.info2-image:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.info1-image img,
.info2-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.info1-image:hover img,
.info2-image:hover img {
  transform: scale(1.05);
}

.info1-text,
.info2-text {
  padding: 30px;
}

.info1-text p,
.info2-text p {
  font-size: 22px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.info1-text .cta-button,
.info2-text .cta-button {
  margin-bottom: 0;
}

/* ==========================
   NEWS/BLOG SECTION
   ========================== */
.news-section {
  padding: 140px 5%;
  background: #ffffff;
  position: relative;
  overflow: visible;
}

/* Decorative rectangles - desktop only */
.news-section::before {
  content: '';
  position: absolute;
  bottom: -300px;
  right: 110px;
  width: 150px;
  height: 1150px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.news-section::after {
  content: '';
  position: absolute;
  bottom: -240px;
  right: -40px;
  width: 150px;
  height: 860px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  overflow: visible;
  animation: float 9s ease-in-out infinite reverse;
}

.news-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.news-heading {
  font-size: 80px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 80px;
  text-align: center;
}

.news-heading .black-text {
  color: #000;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.news-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.news-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.news-card:hover .news-card-image img {
  transform: scale(1.1);
}

.news-card-content {
  padding: 30px;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.news-card-category {
  background: rgba(230, 86, 22, 0.1);
  color: #e65616!!important;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  }

.news-card-category a {
  text-decoration: none;
  color: black;
}

.news-card-date {
  font-size: 14px;
  color: #999;
}

.news-card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.news-card:hover .news-card-content h3 {
  color: #e65616;
}

.news-card-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.news-card-link {
  color: #e65616;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.news-card-link:hover {
  gap: 12px;
}

.news-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-link svg {
  transform: translateX(5px);
}

.news-cta {
  text-align: center;
}

.news-cta-btn {
  display: inline-block;
  background: #e65616;
  color: white;
  padding: 18px 45px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.news-cta-btn:hover {
  background: #d64d0d;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.3);
}

/* ==========================
   METRICS SECTION - LIGHT THEME
   ========================== */
.hd-metrics {
  padding: 120px 5%;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.hd-metrics__container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hd-metrics__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.hd-metrics__eyebrow {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e65616;
  margin-bottom: 15px;
  font-weight: 600;
}

.hd-metrics__title {
  font-size: 48px;
  line-height: 1.2;
  margin: 0 0 15px;
  color: #333333;
  font-weight: 800;
}

.hd-metrics__text {
  font-size: 18px;
  color: #666666;
  margin: 0;
}

.hd-metrics__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 25px;
}

.hd-metric-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.hd-metric-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  border-color: #e65616;
  box-shadow: 0 20px 40px rgba(230, 86, 22, 0.15);
}

.hd-metric-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e65616 0%, #ff8c42 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.hd-metric-card:hover .hd-metric-card__icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 25px rgba(230, 86, 22, 0.4);
}

.hd-metric-card__icon span {
  font-size: 28px;
}

.hd-metric-card__value {
  font-size: 36px;
  font-weight: 800;
  color: #333333;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.hd-metric-card:hover .hd-metric-card__value {
  color: #e65616;
  transform: scale(1.05);
}

.hd-metric-card__label {
  font-size: 14px;
  line-height: 1.5;
  color: #666666;
  font-weight: 500;
}

/* ==========================
   MULTI-STEP CONTACT FORM
   ========================== */
.contact-form-section {
  padding: 0 5%;
  background: #ffffff;
}

.contact-form-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

.contact-form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: start !important;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  color: #e65616;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-info-content a,
.contact-info-content p {
  font-size: 14px;
  color: #e65616;
  text-decoration: none;
  line-height: 1.6;
}

.contact-info-content a:hover {
  text-decoration: underline;
}

/* Right Side - Form Card */
.contact-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: visible;
  border-top: 4px solid #e65616;
}

/* Progress Steps */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  gap: 0;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}

.progress-step {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.progress-step.active {
  background: #e65616;
  color: white;
}

.progress-step.completed {
  background: #5b9bd5;
  color: white;
}

.progress-line {
  width: 60px;
  height: 2px;
  background: #e0e0e0;
  transition: background 0.3s ease;
}

.progress-line.active {
  background: #5b9bd5;
}

/* Form Content */
.form-content {
  background-color: white;
  padding: 0 50px 50px;
  width: 100%;
  box-sizing: border-box;
}

.form-step {
  display: none;
  width: 100%;
}

.form-step.active {
  display: block;
}

.form-step-logo {
  width: 300px;
  height: auto;
  margin-bottom: 20px;
}

.form-step h3 {
  font-size: 32px;
  font-weight: 800;
  color: #333;
  margin-bottom: 15px;
}

.form-step > p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* Initial Choice Buttons - Step 1 */
.initial-choice-buttons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.choice-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 25px 40px;
  border-radius: 15px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: none;
  width: 100%;
}

.choice-btn-primary {
  background: #e65616;
  color: white;
}

.choice-btn-primary:hover {
  background: #d64d0d;
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.3);
}

.choice-btn-secondary {
  background: #333333;
  color: white;
}

.choice-btn-secondary:hover {
  background: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.choice-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.choice-btn:hover svg {
  transform: none;
}

/* Services Selection */
.services-label {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 15px;
  display: block;
}

.services-grid-select {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.service-checkbox {
  position: relative;
}

.service-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.service-checkbox label {
  display: block;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.service-checkbox input:checked + label {
  border-color: #e65616;
  background: rgba(230, 86, 22, 0.1);
  color: #e65616;
}

.service-checkbox label:hover {
  border-color: #e65616;
}

/* Form Inputs */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group label .required {
  color: #e65616;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #5b9bd5;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Day Selection */
.day-selection {
  margin-bottom: 30px;
}

.day-selection-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  display: block;
}

.day-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.day-option {
  position: relative;
}

.day-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.day-option label {
  display: block;
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.day-option input:checked + label {
  border-color: #5b9bd5;
  background: #5b9bd5;
  color: white;
}

.day-option label:hover {
  border-color: #5b9bd5;
}

/* Time Selection */
.time-selection {
  margin-bottom: 30px;
}

.time-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.time-option {
  position: relative;
}

.time-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.time-option label {
  display: block;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.time-option input:checked + label {
  border-color: #5b9bd5;
  background: #5b9bd5;
  color: white;
}

.time-option label:hover {
  border-color: #5b9bd5;
}

/* Meeting Preference */
.meeting-selection {
  margin-bottom: 30px;
}

.meeting-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.meeting-option {
  position: relative;
}

.meeting-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.meeting-option label {
  display: block;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.meeting-option input:checked + label {
  border-color: #5b9bd5;
  background: rgba(91, 155, 213, 0.1);
  color: #5b9bd5;
}

.meeting-option label:hover {
  border-color: #5b9bd5;
}

/* Form Buttons */
.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  position: sticky;
  bottom: 0;
  background: white;
  padding: 20px 0 0 0;
  z-index: 50;
}

.btn-back {
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #6c757d;
  color: white;
}

.btn-back:hover {
  background: #5a6268;
}

.btn-next,
.btn-submit {
  padding: 15px 35px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #e65616;
  color: white;
}

.btn-next:hover,
.btn-submit:hover {
  background: #e65616;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 86, 22, 0.3);
}

/* ==========================
   FOOTER - NORMAL STATIC FOOTER
   ========================== */
.footer-reveal-wrapper {
  margin-bottom: 0;
}

.site-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 50px 5% 40px;
  position: relative;
  z-index: 1;
}

.footer-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 25px;
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #e65616;
  transform: translateY(-3px);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

/* Ecologi Badge */
.footer-badges {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-badge-link {
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-badge-link:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.footer-badges img {
  height: 70px;
  width: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column ul li a,
.footer-column address {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  font-style: normal;
  line-height: 1.6;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #e65616;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
  display: flex;
  gap: 30px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #e65616;
}

/* ==========================
   GLOBAL BOOK A CALL BUTTON
   ========================== */
.global-book-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide when modal is open */
.global-book-call.hidden {
  opacity: 0;
  visibility: hidden;
}

.book-call-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: #e65616;
  border-radius: 60px;
  padding: 4px 8px 4px 4px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(230, 86, 22, 0.35);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: none;
  overflow: hidden;
  cursor: pointer;
}

.book-call-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 86, 22, 0.5);
}

.book-call-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.book-call-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-call-content {
  display: flex;
  flex-direction: column;
  max-width: 150px;
  opacity: 1;
  overflow: hidden;
  white-space: nowrap;
  transition: max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease, padding 0.4s ease;
  padding: 0 12px;
}

.book-call-label {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.book-call-role {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
}

.book-call-arrow {
  display: flex;
  align-items: center;
  color: #ffffff;
  max-width: 30px;
  opacity: 1;
  overflow: hidden;
  transition: max-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s ease;
}

.book-call-arrow svg {
  transition: transform 0.3s ease;
}

.book-call-btn:hover .book-call-arrow svg {
  transform: translateX(3px);
}

/* Subtle pulse on resting state */
@keyframes book-call-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(230, 86, 22, 0.35); }
  50% { box-shadow: 0 4px 25px rgba(230, 86, 22, 0.55); }
}

.book-call-btn:not(:hover) {
  animation: book-call-pulse 3s ease-in-out infinite;
}

/* Mobile */
@media (max-width: 768px) {
  .global-book-call {
    bottom: 20px;
    right: 20px;
  }
}

/* ==========================
   RESPONSIVE - LARGE DESKTOP
   ========================== */
@media (min-width: 1600px) {
  .services {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .service-card {
    width: 350px;
    max-width: none;
  }

  .reviews-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
  }

  .reviews-left {
    margin-bottom: 50px;
  }

  .carousel-track {
    --reviews-per-page: 2;
  }

  .review-card {
    padding: 30px;
  }

  .cta-cards {
    grid-template-columns: 1fr 1fr;
  }

  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

/* Large Desktop (1200px - 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
  .hd-metrics__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-card {
    width: 240px;
    height: 340px;
  }

  .team-card:nth-child(n+2) {
    margin-left: -60px;
  }

  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Reviews Carousel Desktop - 3 per page */
  .carousel-track {
    --reviews-per-page: 3;
  }
}

.contact-sidebar-logo {
  width: 200px;
}

/* Tablet (769px - 1199px) */
@media (min-width: 769px) and (max-width: 1699px) {
  /* Header tablet */
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 12px 20px;
  }

  .hero {
    padding: 150px 5% 80px;
  }

  .section-heading {
    font-size: 60px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hd-metrics__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-deck {
    display: none;
  }

  .team-mobile-carousel {
    display: block;
  }


  /* Contact Form Tablet */
  .contact-form-container {
    gap: 40px;
    padding: 0;
  }

  .contact-sidebar {
    padding: 20px 0;
  }

  .contact-form-card {
    box-shadow: none;
    border: none;
  }

  .form-content {
    padding: 0 20px 30px;
  }

  .form-step h3 {
    font-size: 24px;
  }

  .form-step-logo {
    width: 200px;
  }

  .form-buttons {
    gap: 10px;
  }

  /* Contact Form - Small Mobile Screens */
  .contact-form-section {
    padding: 60px 5%;
  }

  .contact-sidebar {
    padding: 20px 0;
    margin-bottom: 20px;
  }

  .contact-sidebar h2 {
    font-size: 28px;
  }

  .contact-sidebar-logo {
    width: 200px;
  }

  .contact-form-card {
    border-radius: 15px;
  }

  .form-progress {
    padding: 20px 15px;
    gap: 5px;
  }

  .progress-step {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .progress-line {
    width: 40px;
  }

  .form-content {
    padding: 0 15px 30px;
  }

  .form-step h3 {
    font-size: 20px;
  }

  .form-step > p {
    font-size: 14px;
  }

  .form-step-logo {
    width: 160px;
    margin-bottom: 15px;
  }

  .initial-choice-buttons {
    gap: 12px;
  }

  .choice-btn {
    padding: 18px 20px;
    font-size: 16px;
    gap: 10px;
  }

  .services-grid-select {
    grid-template-columns: repeat(2, 1fr);
  }

  .time-options {
    grid-template-columns: repeat(4, 1fr);
  }

  /* News Grid Tablet */
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews Carousel Tablet - 2 per page */
  .review-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

  /* Long CTA Tablet */
  .long-cta-features {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .long-cta-heading {
    font-size: 48px;
  }

  /* Footer Tablet */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-brand {
    max-width: none;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-badges {
    justify-content: center;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
   .about-section::before,
  .about-section::after,
  .info1-section::before,
  .info1-section::after,
  .info2-section::before,
  .info2-section::after,
  .reviews-section::before,
  .reviews-section::after,
  .services-grid-section::before,
  .services-grid-section::after,
    .mtt-intro::before,
  .mtt-intro::after,
  .news-section::before,
  .news-section::after,
  .mtt-team-grid::after,
  .mtt-team-grid::before,
  .seo-page-info-1::after,
  .seo-page-info-1::before,
    .seo-page-info-2::after,
  .seo-page-info-2::before,
    .seo-page-info-3::after,
  .seo-page-info-3::before,
  .ppc-page-info-1::after,
  .ppc-page-info-1::before,
  .ppc-page-info-2::after,
  .ppc-page-info-2::before,
  .email-page-info-3::before,
  .email-page-info-3::after,
  .webdesign-page-info-3::after,
  .webdesign-page-info-3::before,
  .webdesign-page-info-2::before,
  .webdesign-page-info-2::after,
  .webdesign-page-info-1::before,
  .webdesign-page-info-1::after,
  .team-section::before,
  .team-section::after {
display:none  }
}
/* ==========================
   ABOUT US PAGE STYLES
   Inspired by Blue Frontier & Flex Digital
   Append this to end of your style.css
   ========================== */

/* ---- Section Label (reusable) ---- */
.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-label-light {
    color: rgba(255, 255, 255, 0.8);
}

/* ---- About Hero Section ---- */
.about-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1e;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.about-hero-video,
.about-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 180px 5% 120px;
}

.about-hero-text {
    max-width: 1000px;
}

.about-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-hero h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-hero h1 .white-text {
    color: #ffffff;
}

.about-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

/* About Hero Decorative Shapes */
.about-hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.about-shape {
    position: absolute;
    transform: rotate(45deg);
}

.about-shape-1 {
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(230, 86, 22, 0.15);
    animation: float 8s ease-in-out infinite;
}

.about-shape-2 {
    top: 150px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: rgba(51, 51, 51, 0.3);
    animation: float 10s ease-in-out infinite reverse;
}

/* ---- Who We Are Section ---- */
.about-who-section {
    padding: 140px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-who-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.about-who-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-who-heading {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-who-heading .black-text {
    color: #000;
}

.about-who-description p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.about-who-description p:last-of-type {
    margin-bottom: 40px;
}

.about-who-image {
    position: relative;
}

.about-who-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-who-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60%;
    height: 60%;
    background: #e65616;
    border-radius: 20px;
    z-index: -1;
}

/* ---- Our Values Section ---- */
.about-values-section {
    padding: 140px 5%;
    background: #f8f8f8;
    position: relative;
}

.about-values-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.about-values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.about-values-heading {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}

.about-values-heading .black-text {
    color: #000;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-value-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 35px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #e65616;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(230, 86, 22, 0.15);
}

.about-value-card:hover::before {
    transform: scaleX(1);
}

.about-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(230, 86, 22, 0.1) 0%, rgba(230, 86, 22, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.about-value-icon span {
    font-size: 36px;
}

.about-value-card:hover .about-value-icon {
    background: linear-gradient(135deg, #e65616 0%, #ff8c42 100%);
    transform: scale(1.1);
}

.about-value-card:hover .about-value-icon span {
    filter: grayscale(1) brightness(10);
}

.about-value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.about-value-card:hover h3 {
    color: #e65616;
}

.about-value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* ---- CTA Banner Section ---- */
.about-cta-banner {
    padding: 50px 5%;
    background: #f8f8f8;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-cta-banner-content {
    position: relative;
    z-index: 2;
}

.about-cta-banner h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 15px;
}

.about-cta-banner p {
    font-size: 18px;
    color: #000000;
    margin-bottom: 30px;
}

/* ---- Our Story/Timeline Section ---- */
.about-story-section {
    padding: 140px 5%;
    background: #f8f8f8;
    position: relative;
    overflow: hidden;
}

.about-story-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-story-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.about-story-heading {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-story-heading .black-text {
    color: #000;
}

.about-story-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

/* Timeline */
/* Timeline wrapper to contain the line */
.about-story-content {
    position: relative;
    overflow: hidden;
}

/* Remove the wrapper line - we'll put it inside timeline */
.about-story-content::before {
    display: none;
}

.about-timeline-wrapper {
  position: relative;
}

/* Timeline Year Navigation */
.about-timeline-nav {
  display: none;
}

.timeline-nav-btn {
  background: #f0f0f0;
  border: 2px solid transparent;
  border-radius: 25px;
  padding: 8px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.timeline-nav-btn:hover {
  background: #fff;
  border-color: #e65616;
  color: #e65616;
}

.timeline-nav-btn.active {
  background: #e65616;
  border-color: #e65616;
  color: #fff;
  box-shadow: 0 4px 12px rgba(230, 86, 22, 0.3);
}

/* Drag cursor styles */
.about-timeline.is-draggable {
  cursor: grab;
}

.about-timeline.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.about-timeline.is-dragging * {
  pointer-events: none;
}

.about-timeline {
    position: relative;
    padding: 40px 0;
    display: flex;
    flex-direction: row;
    gap: 30px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

/* Horizontal line that extends full width of scrollable area */
.about-timeline::before {
    content: '';
    position: absolute;
    top: 47px;
    left: 0;
    /* Dynamic width set by JS via CSS variable, fallback to full content width */
    width: var(--timeline-scroll-width, 100%);
    height: 4px;
    background: linear-gradient(to right, #e65616, #ff8c42);
    border-radius: 2px;
    z-index: 0;
}

/* Hide scrollbar but keep functionality */
.about-timeline::-webkit-scrollbar {
    height: 8px;
}

.about-timeline::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.about-timeline::-webkit-scrollbar-thumb {
    background: #e65616;
    border-radius: 4px;
}

.about-timeline-item {
    position: relative;
    flex: 0 0 300px;
    min-width: 300px;
    scroll-snap-align: start;
    padding-top: 80px;
}

/* Vertical connector line from horizontal bar to year marker */
.about-timeline-item::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 22px;
    background: #e65616;
    z-index: 1;
    border-radius: 2px;
}

/* Remove left/right positioning for horizontal layout */
.about-timeline-item.timeline-left,
.about-timeline-item.timeline-right {
    left: auto;
    text-align: left;
    padding: 80px 0 0 0;
    width: auto;
}

.about-timeline-marker {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 80px;
    width: auto;
    padding: 0 20px;
    height: 45px;
    background: #e65616;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(230, 86, 22, 0.3);
    white-space: nowrap;
}

/* Override left/right marker positioning */
.timeline-left .about-timeline-marker,
.timeline-right .about-timeline-marker {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
}

.about-timeline-year {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}

.about-timeline-content {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.about-timeline-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

.about-timeline-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    transition: all 0.3s ease;
}

.about-timeline-description.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.about-timeline-read-more {
    display: none;
    background: none;
    border: none;
    color: #e65616;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 0 0;
    transition: color 0.2s ease;
}

.about-timeline-read-more:hover {
    color: #c44a12;
}

.about-timeline-read-more.visible {
    display: inline-block;
}

.about-timeline-item:hover .about-timeline-content {
    box-shadow: 0 15px 40px rgba(230, 86, 22, 0.15);
    transform: translateY(-5px);
    border-color: #e65616;
}

/* Timeline Image - Horizontal layout */
.about-timeline-image {
    margin-top: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    max-height: 220px;
}

.about-timeline-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.4s ease;
}

.about-timeline-item:hover .about-timeline-image {
    box-shadow: 0 8px 25px rgba(230, 86, 22, 0.15);
}

.about-timeline-item:hover .about-timeline-image img {
    transform: scale(1.03);
}

/* Tablet adjustments */
@media (max-width: 1024px) {
    .about-timeline-item {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .about-story-content::before {
        top: 90px;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .about-timeline {
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .about-timeline-item {
        flex: 0 0 260px;
        min-width: 260px;
    }
    
    .about-timeline-marker {
        min-width: 70px;
        width: auto;
        padding: 0 16px;
        height: 40px;
    }
    
    .about-timeline-year {
        font-size: 14px;
    }
    
    .about-timeline-content {
        padding: 20px;
    }
    
    .about-timeline-content h3 {
        font-size: 18px;
    }
    
    .about-timeline-content p {
        font-size: 14px;
    }
    
    .about-timeline-image img {
        height: 200px;
    }
    
    .about-story-content::before {
        top: 90px;
    }
}

/* ---- Our Approach Section ---- */
.about-approach-section {
    padding: 140px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-approach-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.about-approach-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 100px;
}

.about-approach-heading {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}

.about-approach-heading .black-text {
    color: #000;
}

.about-approach-items {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.about-approach-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-approach-item.approach-reversed {
    direction: rtl;
}

.about-approach-item.approach-reversed > * {
    direction: ltr;
}

.about-approach-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    
}

.about-approach-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
    transform: scale(1.05);
}

.about-approach-image:hover img {
    transform: scale(1.10);
}

@media (max-width: 768px) {
.about-approach-image {
height: 250px;
}
}

.about-approach-text {
    padding: 20px 0;
}

.approach-number {
    display: inline-block;
    font-size: 72px;
    font-weight: 900;
    color: rgba(230, 86, 22, 1);
    line-height: 1;
    margin-bottom: 20px;
}

.about-approach-text h3 {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 20px;
}

.about-approach-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.approach-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.approach-features li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.approach-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #e65616;
    border-radius: 50%;
}

/* ---- Team Teaser Section ---- */
.about-team-teaser {
    padding: 120px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-team-teaser-container {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
}

.about-team-teaser-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.about-team-teaser-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #e56616;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-team-teaser-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 35px;
}

.about-team-teaser-images {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
}

.team-teaser-image {
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.team-teaser-image:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-teaser-image:hover img {
    transform: scale(1.1);
}

.team-teaser-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #333 0%, #444 100%);
}

/* ---- About Team Cards (clickable, with modal) ---- */
.about-team-card {
    aspect-ratio: 1 / 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.about-team-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-team-card-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.about-team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-team-card:hover .about-team-card-image img {
    transform: scale(1.1);
}

.about-team-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-team-card:hover .about-team-card-video {
    opacity: 1;
}

.about-team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 15px 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.about-team-card:hover .about-team-card-info {
    transform: translateY(0);
}

.about-team-card-info h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.about-team-card-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    margin: 0;
}

/* ---- About Team Modal ---- */
.about-team-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 99999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.about-team-modal.active {
    opacity: 1;
    visibility: visible;
}

.about-team-modal-content {
    background: #ffffff;
    border-radius: 25px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.about-team-modal.active .about-team-modal-content {
    transform: scale(1) translateY(0);
}

.about-team-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-team-modal-close:hover {
    background: #e65616;
    color: #ffffff;
    transform: rotate(90deg);
}

.about-team-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.about-team-modal-media {
    position: relative;
    background: #e8dfd0;
    overflow: hidden;
}

.about-team-modal-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-team-modal-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.about-team-modal-video.active {
    display: block;
}

.about-team-modal-info {
    padding: 50px 40px;
    overflow-y: auto;
    max-height: 90vh;
}

.about-team-modal-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1e;
    margin: 0 0 8px 0;
}

.about-team-modal-title {
    font-size: 16px;
    color: #e65616;
    font-weight: 600;
    margin: 0 0 25px 0;
}

.about-team-modal-bio {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-team-modal-bio p {
    margin-bottom: 15px;
}

.about-team-modal-bio p:last-child {
    margin-bottom: 0;
}

.about-team-modal-socials {
    display: flex;
    gap: 15px;
}

.about-team-modal-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
}

.about-team-modal-socials a:hover {
    background: #e65616;
    color: #ffffff;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .about-team-modal-grid {
        grid-template-columns: 1fr;
    }
    .about-team-modal-image {
        max-height: 300px;
    }
}

@media (max-width: 768px) {
    .about-team-modal {
        padding: 20px;
    }
    .about-team-modal-info {
        padding: 30px 25px;
        text-align: center;
    }
    .about-team-modal-socials {
        justify-content: center;
    }
    .about-team-teaser-images {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .about-team-teaser-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---- Why Choose Us Section ---- */
.about-why-section {
    padding: 140px 5%;
    background: #ffffff;
    position: relative;
}

.about-why-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-why-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.about-why-heading {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-why-heading .black-text {
    color: #000;
}

.about-why-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}

.about-why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.about-why-feature {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: #f8f8f8;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.about-why-feature:hover {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(230, 86, 22, 0.1);
    transform: translateY(-5px);
}

.why-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #e65616 0%, #ff8c42 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.why-feature-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.why-feature-icon span {
    font-size: 28px;
}

.about-why-feature:hover .why-feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.why-feature-text h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.why-feature-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ---- Stats Section ---- */
.about-stats-section {
    padding: 100px 5%;
    background: #f8f8f8;
    position: relative;
}

.about-stats-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-stats-heading {
    font-size: 36px;
    font-weight: 800;
    color: #333;
    margin-bottom: 60px;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.about-stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.about-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(230, 86, 22, 0.15);
}

.about-stat-value {
    display: block;
    font-size: 56px;
    font-weight: 900;
    color: #e65616;
    line-height: 1;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.about-stat-item:hover .about-stat-value {
    transform: scale(1.1);
}

.about-stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #666;
}

/* ---- Final CTA Section ---- */
.about-final-cta {
    padding: 140px 5%;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-final-cta-container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-final-cta-content {
    text-align: center;
}

.about-final-cta h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-final-cta h2 .white-text {
    color: #000000;
}

.about-final-cta p {
    font-size: 20px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Decorative Shapes */
.about-final-cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    transform: rotate(45deg);
}

.cta-shape-1 {
    bottom: -150px;
    left: -100px;
    width: 300px;
    height: 500px;
    background: rgba(230, 86, 22, 0.1);
    animation: float 9s ease-in-out infinite;
}

.cta-shape-2 {
    top: -100px;
    right: -50px;
    width: 250px;
    height: 400px;
    background: rgba(51, 51, 51, 0.3);
    animation: float 11s ease-in-out infinite reverse;
}

/* ==========================
   ABOUT US PAGE RESPONSIVE
   ========================== */

/* Large Desktop (1200px - 1599px) */
@media (min-width: 1200px) and (max-width: 1599px) {
    .about-hero h1 {
        font-size: 60px;
    }
    
    .about-who-heading,
    .about-values-heading,
    .about-story-heading,
    .about-approach-heading,
    .about-why-heading,
    .about-final-cta h2 {
        font-size: 48px;
    }
    
    .about-team-teaser-images {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Tablet (769px - 1199px) */
@media (min-width: 769px) and (max-width: 1199px) {
    .about-hero {
        min-height: 70vh;
    }
    
    .about-hero h1 {
        font-size: 52px;
    }
    
    .about-hero-content {
        padding: 150px 5% 100px;
    }
    
    .about-who-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-who-heading,
    .about-values-heading,
    .about-story-heading,
    .about-approach-heading,
    .about-why-heading,
    .about-final-cta h2 {
        font-size: 42px;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Timeline tablet */
    .about-timeline::before {
        left: 30px;
    }
    
    .about-timeline-item {
        width: 100%;
        padding-left: 100px;
        padding-right: 20px;
        text-align: left;
    }
    
    .about-approach-item,
    .about-approach-item.approach-reversed {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .about-team-teaser-images {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-why-features {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hide decorative shapes on tablet */
    .about-hero-shapes,
    .about-final-cta-shapes {
        display: none;
    }
}

/* Mobile (up to 768px) */
@media (max-width: 768px) {
    .about-hero {
        min-height: 80vh;
    }
    
    .about-hero-content {
        padding: 140px 5% 80px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .about-hero-description {
        font-size: 17px;
    }
    
    .about-hero-shapes {
        display: none;
    }
    
    /* Sections padding */
    .about-who-section,
    .about-values-section,
    .about-story-section,
    .about-approach-section,
    .about-why-section,
    .about-final-cta {
        padding: 50px 5%;
    }
    
    .about-cta-banner {
        padding: 60px 5%;
    }
    
    .about-team-teaser {
        padding: 50px 5%;
    }
    
    .about-stats-section {
        padding: 60px 5%;
    }
    
    /* Headings */
    .about-who-heading,
    .about-values-heading,
    .about-story-heading,
    .about-approach-heading,
    .about-why-heading {
        font-size: 32px;
    }
    
    .about-final-cta h2 {
        font-size: 30px;
    }
    
    .about-cta-banner h2 {
        font-size: 28px;
    }
    
    .about-team-teaser-content h2 {
        font-size: 28px;
    }
    
    /* Who We Are */
    .about-who-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-who-text {
        text-align: center;
    }
    
    .about-who-image-accent {
        bottom: -15px;
        right: -15px;
    }
    
    /* Values */
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-value-card {
        padding: 30px 25px;
    }
    
    /* Approach */
    .about-approach-items {
        gap: 60px;
    }
    
    .about-approach-item,
    .about-approach-item.approach-reversed {
        grid-template-columns: 1fr;
        gap: 30px;
        direction: ltr;
    }
    
    .about-approach-image img {
        height: 280px;
    }
    
    .approach-number {
        font-size: 48px;
    }
    
    .about-approach-text h3 {
        font-size: 26px;
    }
    
    .about-approach-text p {
        font-size: 16px;
    }
    
    /* Team Teaser */
    .about-team-teaser-images {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .team-teaser-image {
        border-radius: 10px;
    }
    
    /* Why Choose Us */
    .about-why-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-why-feature {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .why-feature-icon {
        margin: 0 auto;
    }
    
    /* Stats */
    .about-stats-heading {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stat-value {
        font-size: 40px;
    }
    
    .about-stat-label {
        font-size: 13px;
    }
    
    /* Final CTA */
    .about-final-cta p {
        font-size: 17px;
    }
    
    .about-final-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-final-cta-buttons .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .about-final-cta-shapes {
        display: none;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 30px;
    }
    
    .about-who-heading,
    .about-values-heading,
    .about-story-heading,
    .about-approach-heading,
    .about-why-heading {
        font-size: 28px;
    }
    
    .about-final-cta h2 {
        font-size: 26px;
    }
    
    .about-team-teaser-images {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .about-stat-item {
        padding: 20px 15px;
    }
    
    .about-stat-value {
        font-size: 32px;
    }
    
    .about-stat-label {
        font-size: 12px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .about-shape-1,
    .about-shape-2,
    .cta-shape-1,
    .cta-shape-2 {
        animation: none;
    }
}
/* ==========================
   MOBILE (up to 768px)
   ========================== */
@media (max-width: 768px) {
  /* Header mobile - Logo left, hamburger right */
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 12px 18px;
    justify-content: space-between;
    position: fixed;
  }

.news-card-meta {
  justify-content: center;
}

  .header-logo {
    height: 28px;
  }

  .hamburger {
    width: 36px;
    height: 36px;
  }

  .hamburger span {
    width: 20px;
  }

  /* Menu close button mobile */
  .menu-close-btn {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }

  .menu-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 25px 0px 10px;
    min-height: 100vh;
  }

  /* Hero mobile */
  .hero {
    padding: 120px 5% 60px;
    min-height: 100vh;
  }

  .cta-button {
    padding: 18px 45px;
    font-size: 18px;
  }

  /* Unified button mobile sizing */
  .cta-btn {
    padding: 16px 35px;
    font-size: 16px;
  }

  /* Hero split button mobile */
  .hero-cta-btn {
    font-size: 18px;
  }

  .hero-cta-btn .btn-text {
    padding: 18px 40px;
  }

  .hero-cta-btn:hover .btn-text {
    padding: 18px 30px;
  }

  .hero-cta-btn:hover .btn-arrow {
    width: 55px;
    padding: 18px 15px;
  }

  /* Service cards mobile */
  .service-cards-section {
    padding: 50px 5%;
  }

  .service-card {
    max-width: 100%;
    height: 400px;
  }

  /* Logo marquee mobile */
  #logo-marquee {
    --size: 40px;
    --gap: 60px;
    height: 100px;
  }

  /* Section headings mobile */
  .section-heading {
    font-size: 40px;
    margin-bottom: 50px;
  }

  .about-heading,
  .info1-heading,
  .info2-heading,
  .news-heading {
    font-size: 40px;
    margin-bottom: 50px;
  }

  /* About section mobile */
  .about-section {
    padding: 50px 5%;
  }

  .about-content,
  .info1-content,
  .info2-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    height: 500px;
  }

  .about-image-main {
    height: 350px;
  }

  .about-image-overlay {
    height: 280px;
    right: -20px;
    width: 80%;
  }

  .about-text,
  .info1-text,
  .info2-text {
    padding: 0;
    text-align: center;
  }

  /* Info images responsive on mobile */
  .info1-image,
  .info2-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-text p,
  .info1-text p,
  .info2-text p {
    font-size: 18px;
  }

  /* Team Section Mobile */
  .team-section {
    padding: 50px 5%;
  }

  .team-deck {
    display: none;
  }

  .team-mobile-carousel {
    display: block;
  }

  .team-mobile-dots {
    gap: 8px;
    flex-wrap: wrap;
  }

  .team-mobile-dot {
    width: 90px;
    height: 90px;
    min-width: 45px;
    min-height: 45px;
  }

  /* Case studies mobile */
  .case-studies-section {
    padding: 50px 5%;
  }

  .case-studies-grid {
    gap: 40px;
    grid-template-columns: 1fr;

  }

  .case-study-image {
    height: 250px;
  }

  .case-study-content {
    padding: 35px;
    display: grid;
    justify-items: center;
  }

  .case-study-content h3 {
    font-size: 28px;
    text-align: center;
  }
  .case-study-content p {
    text-align: center;
  }

  .case-study-stats {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .stat-number {
    font-size: 40px;
  }

  /* Reviews mobile - Arrows on left and right of review box */
  .reviews-section {
    padding: 60px 5%;
  }

  .reviews-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .reviews-left {
    margin-bottom: 40px;
  }

  .reviews-left h2 {
    font-size: 28px;
  }

  .star-rating {
    font-size: 30px;
  }

  .review-count {
    font-size: 16px;
  }

  .google-logo {
    width: 120px;
  }

  .reviews-carousel {
    gap: 10px;
  }

  .carousel-track {
    gap: 15px;
    --reviews-per-page: 1;
  }

  .carousel-track-container {
    flex: 1;
    min-width: 0;
  }

  .review-card {
    padding: 25px 20px;
    min-height: auto;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .carousel-nav svg {
    width: 18px;
    height: 18px;
  }

  /* Services grid mobile */
  .services-grid-section {
    padding: 50px 5%;
  }

  .services-grid-heading {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-grid-card {
    padding: 50px 40px;
  }

  /* CTA mobile */
  .cta-section {
    padding: 50px 5%;
  }

  .cta-card {
    padding: 50px 40px;
  }

  .cta-card h2 {
    font-size: 28px;
  }

  .cta-card p {
    font-size: 17px;
  }

  /* Info sections mobile */
  .info1-section,
  .info2-section {
    padding: 50px 5%;
  }

  /* News section mobile */
  .news-section {
    padding: 50px 5%;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-card-image {
    height: 200px;
  }

  .news-card-content {
    padding: 25px;
    text-align: center;
  }

  .animate-slide-up.is-visible {
    text-align: center;
  }

  .news-card-content h3 {
    font-size: 20px;
  }

  /* Metrics mobile */
  .hd-metrics {
    padding: 50px 5%;
  }

  .hd-metrics__title {
    font-size: 28px;
  }

  .hd-metrics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .hd-metric-card {
    padding: 25px 15px;
  }

  .hd-metric-card__icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .hd-metric-card__icon span {
    font-size: 22px;
  }

  .hd-metric-card__value {
    font-size: 26px;
  }

  .hd-metric-card__label {
    font-size: 12px;
  }

  /* Contact Form Mobile */
  .contact-form-section {
    padding: 60px 5%;
  }

  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-sidebar {
    padding: 20px;
    text-align: center;
  }

  .contact-sidebar h2 {
    font-size: 28px;
  }

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  width: 100%;
}


  .contact-form-card {
    border-radius: 15px;
  }

  .form-content {
    padding: 0 20px 20px;
    min-height: auto;
    overflow-y: auto;

    }

  .form-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .form-step > p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .form-step-logo {
    width: 140px;
    margin-bottom: 12px;
  }

  /* Initial choice buttons mobile */
  .initial-choice-buttons {
    margin-top: 20px;
    gap: 15px;
  }

  .choice-btn {
    padding: 16px 24px;
    font-size: 14px;
    width: 100%;
  }

  .services-grid-select {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
    overflow-y: auto;
    padding-right: 8px;
  }

  .services-label {
    margin-bottom: 12px;
  }

  .service-checkbox label {
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 500;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 13px;
    margin-bottom: 6px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 16px;
    font-size: 14px;
  }

  .form-group textarea {
    min-height: 100px;
  }

  .form-buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  .btn-back,
  .btn-next,
  .btn-submit {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }

  .day-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .day-option label {
    padding: 10px 12px;
    font-size: 12px;
  }

  .time-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .time-option label {
    padding: 10px 8px;
    font-size: 12px;
  }

  .meeting-options {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .form-buttons {
    flex-direction: column;
  }

  .btn-back,
  .btn-next,
  .btn-submit {
    width: 100%;
    padding: 15px 30px;
  }

  /* Long CTA Mobile */
  .long-cta-section {
    padding: 50px 5%;
  }

  .long-cta-heading {
    font-size: 36px;
  }

  .long-cta-text {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .long-cta-features {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
  }

  .long-cta-feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .long-cta-feature-text h4 {
    font-size: 18px;
  }

  .long-cta-feature-text p {
    font-size: 14px;
  }

  .long-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .long-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
    font-size: 16px;
  }

  /* Footer Mobile */
  .site-footer {
    padding: 60px 5% 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }

  .footer-brand {
    text-align: center;
    max-width: none;
  }

  .footer-logo {
    margin: 0 auto 20px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-badges {
    justify-content: center;
    margin-top: 25px;
  }

  .footer-badges img {
    height: 60px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-column h4 {
    margin-bottom: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding-top: 30px;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  /* ==========================
     HIDE ALL DECORATIVE RECTANGLES ON MOBILE
     ========================== */
  .about-section::before,
  .about-section::after,
  .reviews-section::before,
  .reviews-section::after,
  .services-grid-section::before,
  .services-grid-section::after,
  .info1-section::before,
  .info1-section::after,
  .info2-section::before,
  .info2-section::after,
    .mtt-intro::before,
  .mtt-intro::after,
  .team-section::before,
    .mtt-team-grid::after,
  .mtt-team-grid::before,
    .ppc-page-info-1::after,
  .ppc-page-info-1::before,
.webdesign-page-info-1::after,
  .webdesign-page-info-1::before,
  .webdesign-page-info-2::after,
  .webdesign-page-info-2::before,
    .webdesign-page-info-3::after,
  .webdesign-page-info-3::before,
    .ppc-page-info-2::after,
  .ppc-page-info-2::before,
    .seo-page-info-1::after,
  .seo-page-info-1::before,
    .seo-page-info-2::after,
  .seo-page-info-2::before,
    .seo-page-info-3::after,
  .seo-page-info-3::before,
    .email-page-info-3::before,
  .email-page-info-3::after,
  .team-section::after,
  .news-section::before,
  .news-section::after {
    display: none !important;
  }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
  .section-heading {
    font-size: 32px;
  }

  .about-heading,
  .info1-heading,
  .info2-heading,
  .news-heading {
    font-size: 32px;
  }

  .team-mobile-dot {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  .hd-metrics__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hd-metric-card__value {
    font-size: 22px;
  }

  .hd-metric-card__label {
    font-size: 11px;
  }

  /* Contact form small mobile */
  .services-grid-select {
    grid-template-columns: 1fr;
    overflow-y: auto;
    padding-right: 8px;
  }

  .form-content {
    padding: 0 16px 16px;
    overflow-y: auto;
    background-color: white;
    padding-bottom: 50px;
  }

  .form-step h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .form-step > p {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .form-step-logo {
    width: 120px;
    margin-bottom: 10px;
  }

  .choice-btn {
    padding: 14px 18px;
    font-size: 13px;
    width: 100%;
  }

  .service-checkbox label {
    padding: 12px 14px;
    font-size: 12px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .btn-back,
  .btn-next,
  .btn-submit {
    padding: 12px 18px;
    font-size: 13px;
  }

  .day-options {
    grid-template-columns: repeat(4, 1fr);
  }

  .time-options {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Long CTA small mobile */
  .long-cta-heading {
    font-size: 30px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  #logo-marquee .marquee-track {
    animation: none;
  }

  .about-section::before,
  .about-section::after,
  .info1-section::before,
  .info1-section::after,
  .info2-section::before,
  .info2-section::after,
  .reviews-section::before,
  .reviews-section::after,
  .services-grid-section::before,
  .services-grid-section::after,
  .mtt-intro::before,
  .mtt-intro::after,
  .news-section::before,
  .news-section::after,
  .seo-page-info-1::after,
  .seo-page-info-1::before,
    .seo-page-info-2::after,
  .seo-page-info-2::before,
    .seo-page-info-3::after,
  .seo-page-info-3::before,
    .ppc-page-info-1::after,
  .ppc-page-info-1::before,
    .ppc-page-info-2::after,
  .ppc-page-info-2::before,
    .email-page-info-3::before,
  .email-page-info-3::after,
      .webdesign-page-info-1::after,
  .webdesign-page-info-1::before,
      .webdesign-page-info-2::after,
  .webdesign-page-info-2::before,
    .webdesign-page-info-3::after,
  .webdesign-page-info-3::before,
  .mtt-team-grid::after,
  .mtt-team-grid::before,
  .team-section::before,
  .team-section::after {
    animation: none;
  }
}


/* ==========================
   MEET THE TEAM PAGE STYLES
   Fruitful-inspired design
   ========================== */
/* ---- Hero Section with Video ---- */
.mtt-hero-description{
  margin-top: 12px;
  font-size: 20px;
  line-height: 1.7;
  color: white;
  max-width: 550px;
  margin-bottom: 40px;
}


/* LEFT SIDE decorative rectangles - REMOVED */
.mtt-team-grid::before {
  display: none;
}

.mtt-team-grid::after {
  display: none;
}

.mtt-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: #1a1a1e;
}

.mtt-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.mtt-hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mtt-hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.mtt-hero-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1e 0%, #2d2d35 100%);
}

.mtt-hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* When video is present, hide the bg image (it acts as an extra fallback) */
.mtt-hero-video ~ .mtt-hero-bg-image {
  opacity: 0;
  z-index: -1;
}

.mtt-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
  z-index: 1;
}

.mtt-hero-content {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 180px 5% 120px;
}

.mtt-hero-content h1 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
}

.mtt-hero-text {
  max-width: 1000px;
}

.mtt-hero-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.mtt-hero-content .white-text {
  color: #ffffff;
}

.mtt-hero-content .highlight-text-italic {
  color: #e65616;
  font-style: italic;
}
/* ---- Intro Section ---- */
.mtt-intro {
  padding: 100px 5%;
  background: #ffffff;
  text-align: center;
}

.mtt-intro-container {
  max-width: 800px;
  margin: 0 auto;
}

.mtt-intro h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #1a1a1e;
  margin-bottom: 20px;
}

.mtt-intro p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
}

/* ---- Team Grid Section ---- */
.mtt-team-grid {
  padding: 60px 5% 120px;
  background: #f8f8f8;
  position: relative;
}

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

/* ---- Mouse Following Tooltip ---- */
.mtt-cursor-tooltip {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  background: #ffffff;
  color: #1a1a1e;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: opacity 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.mtt-cursor-tooltip.visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ---- Team Rows ---- */
.mtt-team-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 25px;
}

.mtt-team-row:last-child {
  margin-bottom: 0;
}

/* Row with 2 cards */
.mtt-row-2 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mtt-row-2 .mtt-team-card {
  flex: 0 1 calc(50% - 12.5px);
  max-width: 560px;
}

/* Row with 3 cards - Primary layout */
.mtt-row-3 {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mtt-row-3 .mtt-team-card {
  flex: 0 1 calc(33.333% - 17px);
  max-width: 380px;
}

/* Row with 1 card (centered) */
.mtt-row-1 {
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.mtt-row-1 .mtt-team-card {
  flex: 0 1 100%;
  max-width: 380px;
}

/* Row with 4 cards */
.mtt-row-4 {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.mtt-row-4 .mtt-team-card {
  flex: 0 1 calc(25% - 18.75px);
  max-width: 320px;
}

/* ---- Team Card ---- */
.mtt-team-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #e8dfd0;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
              box-shadow 0.4s ease;
  aspect-ratio: 3 / 4;
}

.mtt-team-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

/* ---- Card Media (Image/Video) ---- */
/* ---- Join Team Card ---- */
.mtt-join-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1e 0%, #2d2d35 100%);
  cursor: pointer;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
  flex: 0 1 calc(33.333% - 17px);
  max-width: 380px;
}

.mtt-join-card:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.mtt-join-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.mtt-join-card:hover .mtt-join-bg {
  opacity: 0.4;
}

.mtt-join-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(230, 86, 22, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(230, 86, 22, 0.1) 0%, transparent 35%),
    linear-gradient(135deg, #1a1a1e 0%, #2d2d35 100%);
  opacity: 1;
}

.mtt-join-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.mtt-join-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(230, 86, 22, 0.15);
  border: 2px dashed rgba(230, 86, 22, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e65616;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.mtt-join-card:hover .mtt-join-icon {
  background: rgba(230, 86, 22, 0.25);
  border-color: #e65616;
  transform: scale(1.1);
}

.mtt-join-heading {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.mtt-join-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
  max-width: 240px;
}

.mtt-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 12px 28px;
  background: #e65616;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mtt-join-btn svg {
  transition: transform 0.3s ease;
}

.mtt-join-card:hover .mtt-join-btn svg {
  transform: translateX(4px);
}

.mtt-join-card:hover .mtt-join-btn {
  background: #ffffff;
  color: #1a1a1e;
  transform: translateY(-2px);
}

/* ==========================
   MEET THE TEAM RESPONSIVE (affects join card)
   ========================== */

@media (max-width: 768px) {
  .mtt-join-card {
    flex: 0 1 100%;
    max-width: 350px;
    width: 100%;
  }

  .mtt-join-heading {
    font-size: 20px;
  }

  .mtt-join-text {
    font-size: 14px;
  }

  .mtt-join-icon {
    width: 60px;
    height: 60px;
  }

  .mtt-join-icon svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .mtt-join-card {
    max-width: 300px;
  }

  .mtt-join-content {
    padding: 30px 20px;
  }

  .mtt-join-heading {
    font-size: 18px;
  }
}

/* ==========================
   FULL WIDTH JOIN BANNER SECTION
   ========================== */
.mtt-join-banner {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1e 0%, #2d2d35 100%);
    padding: 50px 5%;
    margin: 0;
}

.mtt-join-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mtt-join-banner-icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 86, 22, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mtt-join-banner-icon svg {
    width: 40px;
    height: 40px;
    color: #e65616;
}

.mtt-join-banner-text {
    text-align: left;
}

.mtt-join-banner-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.mtt-join-banner-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.mtt-join-banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e65616;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mtt-join-banner-btn:hover {
    background: #d64d0d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(230, 86, 22, 0.3);
}

.mtt-join-banner-btn svg {
    transition: transform 0.3s ease;
}

.mtt-join-banner-btn:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .mtt-join-banner {
        padding: 60px 5%;
    }
    
    .mtt-join-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .mtt-join-banner-text {
        text-align: center;
    }
    
    .mtt-join-banner-text h3 {
        font-size: 24px;
    }
    
    .mtt-join-banner-icon {
        width: 70px;
        height: 70px;
    }
    
    .mtt-join-banner-icon svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .mtt-join-banner {
        padding: 50px 5%;
    }
    
    .mtt-join-banner-text h3 {
        font-size: 20px;
    }
    
    .mtt-join-banner-text p {
        font-size: 14px;
    }
    
    .mtt-join-banner-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
}

.mtt-card-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mtt-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.mtt-card-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mtt-team-card.has-video:hover .mtt-card-video {
  opacity: 1;
}

.mtt-team-card.has-video:hover .mtt-card-image {
  opacity: 0;
}

.mtt-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8dfd0 0%, #d4c9b8 100%);
}

/* ---- Card Info Overlay ---- */
.mtt-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.mtt-card-name {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.mtt-card-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin: 0 0 15px 0;
}

/* ---- Card Tags (Fruitful Style) ---- */
.mtt-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mtt-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.mtt-tag-emoji {
  font-size: 14px;
}

/* ---- CTA Section ---- */
.mtt-cta {
  padding: 120px 5%;
  background: linear-gradient(135deg, #1a1a1e 0%, #2d2d35 100%);
  text-align: center;
}

.mtt-cta-container {
  max-width: 700px;
  margin: 0 auto;
}

.mtt-cta h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.mtt-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.mtt-cta-btn {
  display: inline-block;
  background: #e65616;
  color: #ffffff;
  padding: 18px 45px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mtt-cta-btn:hover {
  background: #d64d0d;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.4);
}

/* ---- Team Modal ---- */
.mtt-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.mtt-modal.active {
  opacity: 1;
  visibility: visible;
}

.mtt-modal-content {
  background: #ffffff;
  border-radius: 25px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mtt-modal.active .mtt-modal-content {
  transform: scale(1) translateY(0);
}

.mtt-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.mtt-modal-close:hover {
  background: #e65616;
  color: #ffffff;
  transform: rotate(90deg);
}

.mtt-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.mtt-modal-media {
  position: relative;
  background: #e8dfd0;
  height: 523px;
  overflow: hidden;
}

.mtt-modal-image {
  width: 100%;
  height: 530px;
  object-fit: cover;
}

.mtt-modal-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 530px!important;
  object-fit: cover;
  }

.mtt-modal-video.active {
  display: block;
}

.mtt-modal-info {
  padding: 50px 40px;
  overflow-y: auto;
  max-height: 90vh;
}

.mtt-modal-info h3 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1e;
  margin: 0 0 8px 0;
}

.mtt-modal-title {
  font-size: 16px;
  color: #e65616;
  font-weight: 600;
  margin: 0 0 25px 0;
}

.mtt-modal-bio {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 10px;
}

.mtt-modal-bio p {
  margin-bottom: 15px;
}

.mtt-modal-bio p:last-child {
  margin-bottom: 0;
}

.mtt-modal-socials {
  display: flex;
  gap: 15px;
}

.mtt-modal-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  transition: all 0.3s ease;
}

.mtt-modal-socials a:hover {
  background: #e65616;
  color: #ffffff;
  transform: translateY(-3px);
}

.mtt-modal-socials a[style*="display: none"] {
  display: none !important;
}

/* ==========================
   MEET THE TEAM RESPONSIVE
   ========================== */

@media (max-width: 1200px) {
  .mtt-row-4 .mtt-team-card {
    flex: 0 1 calc(50% - 12.5px);
    max-width: 100%;
  }
  
  .mtt-row-4 {
    flex-wrap: wrap;
  }
  
  .mtt-row-3 .mtt-team-card {
    flex: 0 1 calc(50% - 12.5px);
    max-width: 100%;
  }
  
  .mtt-row-3 {
    flex-wrap: wrap;
  }
  
  .mtt-join-card {
    flex: 0 1 calc(50% - 12.5px);
    max-width: 100%;
  }
}

@media (max-width: 992px) {
  .mtt-hero {
    min-height: 70vh;
  }
  
  .mtt-hero-content h1 {
    font-size: 48px;
  }
  
  .mtt-hero-content {
    padding: 150px 5% 100px;
  }
}

@media (max-width: 900px) {
  .mtt-hero {
    min-height: 50vh;
  }
  
  .mtt-hero-content {
    padding: 100px 20px 60px;
  }
  
  .mtt-intro {
    padding: 50px 5%;
  }
  
  .mtt-team-grid {
    padding: 40px 5% 80px;
  }
  
  .mtt-team-row {
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .mtt-row-2 .mtt-team-card {
    flex: 0 1 calc(50% - 10px);
  }
  
  .mtt-modal-grid {
    grid-template-columns: 1fr;
  }
  
  .mtt-modal-media {
    height: 300px;
  }
  
  .mtt-modal-info {
    padding: 30px 25px;
  }
  
  .mtt-modal-info h3 {
    font-size: 26px;
  }
  
  /* Hide cursor tooltip on tablet/mobile */
  .mtt-cursor-tooltip {
    display: none;
  }
}

@media (max-width: 768px) {
  .mtt-hero {
    min-height: 60vh;
  }
  
  .mtt-hero-content {
    padding: 130px 5% 80px;
  }

  .mtt-modal-video {
    height: 400px;
  }
  
  .mtt-hero-content h1 {
    font-size: 38px;
  }
  
  .mtt-team-row {
    flex-direction: column;
    align-items: center;
  }
  
  .mtt-row-2 .mtt-team-card,
  .mtt-row-1 .mtt-team-card,
  .mtt-row-3 .mtt-team-card,
  .mtt-row-4 .mtt-team-card {
    flex: 0 1 100%;
    max-width: 350px;
    width: 100%;
  }
  
  .mtt-join-card {
    flex: 0 1 100%;
    max-width: 350px;
    width: 100%;
  }
  
  .mtt-card-name {
    font-size: 20px;
  }
  
  .mtt-card-title {
    font-size: 13px;
  }
  
  .mtt-tag {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .mtt-cta {
    padding: 50px 5%;
  }
  
  .mtt-cta p {
    font-size: 16px;
  }
  
  .mtt-cta-btn {
    padding: 15px 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .mtt-hero-content h1 {
    font-size: 32px;
  }
  
  .mtt-intro h2 {
    font-size: 28px;
  }
  
  .mtt-intro p {
    font-size: 16px;
  }
  
  .mtt-row-2 .mtt-team-card,
  .mtt-row-1 .mtt-team-card,
  .mtt-row-4 .mtt-team-card {
    max-width: 300px;
  }
  
  .mtt-card-info {
    padding: 25px 15px;
  }
  
  .mtt-card-name {
    font-size: 18px;
  }
  
  .mtt-modal-content {
    border-radius: 20px;
    margin: 10px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .mtt-modal-media {
    height: 400px;
  }
  
  .mtt-modal-info {
    padding: 25px 20px;
  }
  
  .mtt-modal-info h3 {
    font-size: 22px;
  }
  
  .mtt-modal-title {
    font-size: 14px;
  }
  
  .mtt-modal-bio {
    font-size: 14px;
  }
}

/* ================================================
   SEO PAGE STYLES - All classes prefixed with seo-page-
   Background pattern: #f8f8f8 → #ffffff alternating from stats
   ================================================ */

/* SEO Hero */
/* ==========================
   SEO PAGE HERO - Same style as About Us
   ========================== */
.seo-page-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1e;
}

.seo-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.seo-page-hero-video,
.seo-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seo-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.seo-page-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 180px 5% 120px;
}

.seo-page-hero-text {
    max-width: 1000px;
}

.seo-page-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.seo-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.seo-page-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}


.seo-page-shape {
    position: absolute;
    transform: rotate(45deg);
}

.seo-page-shape-1 {
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(230, 86, 22, 0.15);
    animation: float 8s ease-in-out infinite;
}

.seo-page-shape-2 {
    top: 150px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: rgba(51, 51, 51, 0.3);
    animation: float 10s ease-in-out infinite reverse;
}

.seo-page-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* SEO Stats - #f8f8f8 */
.seo-page-stats {
    background: #f8f8f8;
    padding: 80px 40px;
}

.seo-page-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.seo-page-stat-item {
    text-align: center;
}

.seo-page-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #e65616;
    margin-bottom: 10px;
}

.seo-page-stat-label {
    font-size: 16px;
    color: #666;
}

/* SEO Info Sections Base */
.seo-page-info {
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
}

.seo-page-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-page-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 60px;
    text-align: center;
}

.seo-page-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.seo-page-info-reversed {
    direction: rtl;
}

.seo-page-info-reversed > * {
    direction: ltr;
}

.seo-page-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.seo-page-info-text p {
    margin-bottom: 20px;
}

.seo-page-info-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.seo-page-info-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-page-info-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: #ccc;
}

/* SEO Info 1 - #ffffff */
.seo-page-info-1 {
    background: #ffffff;
}

.seo-page-info-1::before {
  content: '';
  position: absolute;
  top: -875px;
  right: -389px;
  width: 150px;
  height: 1430px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(90deg);
  z-index: 0;
  animation: float 5s ease-in-out infinite;
}

.seo-page-info-1::after {
  content: '';
  position: absolute;
  top: -640px;
  right: -110px;
  width: 150px;
  height: 1050px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 4s ease-in-out infinite reverse;
}

/* SEO Long CTA Base */
.seo-page-longcta {
    padding: 100px 40px;
}

.seo-page-longcta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-page-longcta-content {
    text-align: center;
}

.seo-page-longcta-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.seo-page-longcta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.seo-page-longcta-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.seo-page-longcta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.seo-page-longcta-feature {
    display: grid;
    text-align: left;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.seo-page-longcta-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.seo-page-longcta-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.seo-page-longcta-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 8px;
}

.seo-page-longcta-feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.seo-page-longcta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.seo-page-longcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.seo-page-longcta-btn-primary {
    background: #e65616;
    color: #fff;
}

.seo-page-longcta-btn-primary:hover {
    background: #d14a0f;
    transform: translateY(-2px);
}

.seo-page-longcta-btn-primary svg {
    width: 20px;
    height: 20px;
}

.seo-page-longcta-btn-secondary {
    background: transparent;
    color: #1a1a1e;
    border: 2px solid #ddd;
}

.seo-page-longcta-btn-secondary:hover {
    border-color: #e65616;
    color: #e65616;
}

.seo-page-longcta-btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* SEO Long CTA 1 - #f8f8f8 */
.seo-page-longcta-1 {
    background: #f8f8f8;
}

/* SEO Services - #ffffff */
.seo-page-services {
    background: #ffffff;
    padding: 120px 40px;
}

.seo-page-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-page-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.seo-page-services-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.seo-page-services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.seo-page-services-header p {
    font-size: 18px;
    color: #666;
}

.seo-page-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.seo-page-service-card {
  display: grid;
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.seo-page-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.seo-page-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.seo-page-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.seo-page-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 15px;
}

.seo-page-service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* SEO Info 2 - #f8f8f8 */
.seo-page-info-2 {
    background: #f8f8f8;
}

.seo-page-info-2::before {
  content: '';
  position: absolute;
  bottom: -220px;
  right: 40px;
  width: 150px;
  height: 630px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.seo-page-info-2::after {
  content: '';
  position: absolute;
  bottom: -220px;
  right: 160px;
  width: 150px;
  height: 870px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 9s ease-in-out infinite reverse;
}

/* SEO Long CTA 2 - #ffffff */
.seo-page-longcta-2 {
    background: #ffffff;
}

/* SEO Process - #f8f8f8 */
.seo-page-process {
    background: #f8f8f8;
    padding: 120px 40px;
}

.seo-page-process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.seo-page-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.seo-page-process-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.seo-page-process-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.seo-page-process-header p {
    font-size: 18px;
    color: #666;
}

.seo-page-process-timeline {
    position: relative;
}

.seo-page-process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.seo-page-process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.seo-page-process-step:last-child {
    margin-bottom: 0;
}

.seo-page-process-number {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #e65616;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #e65616;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.seo-page-process-content {
    padding-top: 15px;
}

.seo-page-process-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.seo-page-process-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* SEO Info 3 - #ffffff */
.seo-page-info-3 {
    background: #ffffff;
}

.seo-page-info-3::before {
  content: '';
  position: absolute;
  bottom: -230px;
  left: 50px;
  width: 150px;
  height: 530px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.seo-page-info-3::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -10px;
  width: 150px;
  height: 480px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 9s ease-in-out infinite reverse;
}

/* SEO Long CTA 3 - #f8f8f8 */
.seo-page-longcta-3 {
    background: #f8f8f8;
}

/* SEO Results - #ffffff */
.seo-page-results {
    background: #ffffff;
    padding: 120px 40px;
}

.seo-page-results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-page-results-header {
    text-align: center;
    margin-bottom: 60px;
}

.seo-page-results-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.seo-page-results-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.seo-page-results-header p {
    font-size: 18px;
    color: #666;
}

.seo-page-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.seo-page-result-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.seo-page-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.seo-page-result-image {
    height: 200px;
    overflow: hidden;
}

.seo-page-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.seo-page-result-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.seo-page-result-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.seo-page-result-content {
    padding: 30px;
}

.seo-page-result-industry {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 10px;
}

.seo-page-result-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.seo-page-result-content > p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.seo-page-result-metrics {
    display: flex;
    gap: 30px;
}

.seo-page-result-metric {
    text-align: center;
}

.seo-page-result-metric-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #e65616;
}

.seo-page-result-metric-label {
    font-size: 13px;
    color: #888;
}

/* SEO FAQ - #f8f8f8 */
.seo-page-faq {
    background: #f8f8f8;
    padding: 120px 40px;
}

.seo-page-faq-container {
    max-width: 1400px;
    margin: 0 auto;
}

.seo-page-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.seo-page-faq-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.seo-page-faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
}

/* Split layout: image left, FAQs right */
.seo-faq-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.seo-faq-split-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.seo-faq-split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.seo-faq-split-content {
    width: 100%;
}

.seo-page-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.seo-page-faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.seo-page-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.seo-page-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
}

.seo-page-faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    transition: transform 0.3s ease;
}

.seo-page-faq-item.active .seo-page-faq-question svg {
    transform: rotate(180deg);
}

.seo-page-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.seo-page-faq-item.active .seo-page-faq-answer {
    max-height: 300px;
}

.seo-page-faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* SEO CTA - Dark */
.seo-page-cta {
    background: #1a1a1e;
    padding: 120px 40px;
    text-align: center;
}

.seo-page-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.seo-page-cta-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.seo-page-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.seo-page-cta p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.seo-page-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* SEO Reviews - #ffffff */
.seo-page-reviews {
    background: #ffffff;
    padding: 120px 40px;
}

.seo-page-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.seo-page-reviews-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.seo-page-star-rating {
    margin-bottom: 15px;
}

.seo-page-star-rating .star {
    color: #fbbc04;
    font-size: 28px;
}

.seo-page-review-count {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.seo-page-google-logo {
    height: 30px;
    width: auto;
}

.seo-page-reviews-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.seo-page-carousel-nav {
    width: 50px;
    height: 50px;
    border: 2px solid #ddd;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.seo-page-carousel-nav:hover {
    border-color: #e65616;
    color: #e65616;
}

.seo-page-carousel-track-container {
    flex: 1;
    overflow: hidden;
}

.seo-page-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.seo-page-review-card {
    min-width: 350px;
    background: #f8f8f8;
    padding: 30px;
    border-radius: 20px;
}

.seo-page-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.seo-page-reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 20px;
}

.seo-page-reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1e;
}

.seo-page-review-date {
    font-size: 13px;
    color: #888;
}

.seo-page-review-stars {
    color: #fbbc04;
    font-size: 18px;
    margin-bottom: 15px;
}

.seo-page-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
}

/* ================================================
   SEO PAGE RESPONSIVE STYLES
   ================================================ */

@media (max-width: 1024px) {
    .seo-page-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .seo-page-info {
        padding: 80px 20px;
    }
    
    .seo-page-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .seo-page-info-reversed {
        direction: ltr;
    }
    
    .seo-page-info-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .seo-page-results {
        padding: 80px 20px;
    }
    
    .seo-page-results-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .seo-page-reviews-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .seo-page-reviews-left {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .seo-page-hero {
        min-height: auto;
    }

    .seo-page-info-container {
        text-align: center;
    }

    .seo-page-longcta-feature {
        text-align: center;
        justify-items: center;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .seo-page-result-content {
        text-align: center;
        justify-items: center;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .seo-page-service-card {
        text-align: center;
        justify-items: center;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .seo-page-hero-content {
        padding: 140px 20px 80px;
    }
    
    .seo-page-hero h1 {
        font-size: 42px;
    }
    
    .seo-page-hero-description {
        font-size: 18px;
    }
    
    .seo-page-hero-shapes {
        display: none;
    }
    
    .seo-page-stats {
        padding: 60px 20px;
    }
    
    .seo-page-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .seo-page-stat-number {
        font-size: 36px;
    }
    
    .seo-page-longcta {
        padding: 60px 20px;
    }
    
    .seo-page-longcta-features {
        grid-template-columns: 1fr;
    }
    
    .seo-page-longcta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .seo-page-services {
        padding: 80px 20px;
    }
    
    .seo-page-process {
        padding: 80px 20px;
    }
    
    .seo-page-process-timeline::before {
        left: 30px;
    }
    
    .seo-page-process-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .seo-page-process-step {
        gap: 25px;
    }
    
    .seo-page-faq {
        padding: 80px 20px;
    }
    
    .seo-page-faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .seo-page-faq-answer p {
        padding: 0 20px 20px;
    }
    
    .seo-page-cta {
        padding: 80px 20px;
    }
    
    .seo-page-reviews {
        padding: 80px 20px;
    }
    
    .seo-page-review-card {
        min-width: 280px;
    }
    
    .seo-page-info-1::before,
    .seo-page-info-1::after,
    .seo-page-info-2::before,
    .seo-page-info-2::after,
    .seo-page-info-3::before,
    .seo-page-info-3::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .seo-page-services-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-page-reviews-carousel {
        flex-direction: column;
    }
    
    .seo-page-carousel-nav {
        display: none;
    }
    
    .seo-page-carousel-track {
        flex-direction: column;
        gap: 15px;
    }
    
    .seo-page-review-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .seo-page-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .seo-page-longcta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .seo-page-result-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .seo-page-cta-buttons {
        flex-direction: column;
    }
}


/* ================================================
   PPC PAGE STYLES - All classes prefixed with ppc-page-
   Background pattern: #f8f8f8 → #ffffff alternating from stats
   ================================================ */

/* PPC Hero */
.ppc-page-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1e;
}

.ppc-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ppc-page-hero-video,
.ppc-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ppc-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.ppc-page-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 180px 5% 120px;
}

.ppc-page-hero-text {
    max-width: 1000px;
}

.ppc-page-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ppc-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.ppc-page-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.ppc-page-hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.ppc-page-shape {
    position: absolute;
    transform: rotate(45deg);
}

.ppc-page-shape-1 {
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(230, 86, 22, 0.15);
    animation: ppcFloat 8s ease-in-out infinite;
}

.ppc-page-shape-2 {
    top: 150px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: rgba(51, 51, 51, 0.3);
    animation: ppcFloat 10s ease-in-out infinite reverse;
}

@keyframes ppcFloat {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(20px, -20px); }
}

.ppc-page-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* PPC Stats - #f8f8f8 */
.ppc-page-stats {
    background: #f8f8f8;
    padding: 80px 40px;
}

.ppc-page-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.ppc-page-stat-item {
    text-align: center;
}

.ppc-page-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #e65616;
    margin-bottom: 10px;
}

.ppc-page-stat-label {
    font-size: 16px;
    color: #666;
}

/* PPC Info Sections Base */
.ppc-page-info {
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
}

.ppc-page-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ppc-page-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 60px;
    text-align: center;
}

.ppc-page-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ppc-page-info-reversed {
    direction: rtl;
}

.ppc-page-info-reversed > * {
    direction: ltr;
}

.ppc-page-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.ppc-page-info-text p {
    margin-bottom: 20px;
}

.ppc-page-info-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.ppc-page-info-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppc-page-info-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: #ccc;
}

/* PPC Info 1 - #ffffff */
.ppc-page-info-1 {
    background: #ffffff;
}

.ppc-page-info-1::before {
content: '';
  position: absolute;
  top: -875px;
  right: -389px;
  width: 150px;
  height: 1430px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(90deg);
  z-index: 0;
  animation: float 5s ease-in-out infinite;
}

.ppc-page-info-1::after {
  content: '';
  position: absolute;
  top: -640px;
  right: -110px;
  width: 150px;
  height: 1050px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 4s ease-in-out infinite reverse;
}

/* PPC Info 2 - #f8f8f8 */
.ppc-page-info-2 {
    background: #f8f8f8;
}

.ppc-page-info-2::before {
  content: '';
  position: absolute;
  bottom: -360px;
  right: 20px;
  width: 150px;
  height: 930px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.ppc-page-info-2::after {
  content: '';
  position: absolute;
  bottom: -560px;
  right: 290px;
  width: 150px;
  height: 1250px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 9s ease-in-out infinite reverse;
}


/* PPC Info 3 - #ffffff */
.ppc-page-info-3 {
    background: #ffffff;
}

.ppc-page-info-3::before {
    content: '';
    position: absolute;
    top: 15%;
    right: -70px;
    width: 220px;
    height: 220px;
    background: rgba(230, 86, 22, 0.03);
    border-radius: 25px;
    transform: rotate(10deg);
}

.ppc-page-info-3::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -40px;
    width: 150px;
    height: 150px;
    background: rgba(230, 86, 22, 0.05);
    border-radius: 15px;
    transform: rotate(-15deg);
}

/* PPC Long CTA Base */
.ppc-page-longcta {
    padding: 100px 40px;
}

.ppc-page-longcta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ppc-page-longcta-content {
    text-align: center;
}

.ppc-page-longcta-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.ppc-page-longcta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.ppc-page-longcta-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.ppc-page-longcta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.ppc-page-longcta-feature {
    text-align: left;
    display: grid;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ppc-page-longcta-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ppc-page-longcta-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.ppc-page-longcta-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 8px;
}

.ppc-page-longcta-feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.ppc-page-longcta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.ppc-page-longcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ppc-page-longcta-btn-primary {
    background: #e65616;
    color: #fff;
}

.ppc-page-longcta-btn-primary:hover {
    background: #d14a0f;
    transform: translateY(-2px);
}

.ppc-page-longcta-btn-primary svg {
    width: 20px;
    height: 20px;
}

.ppc-page-longcta-btn-secondary {
    background: transparent;
    color: #1a1a1e;
    border: 2px solid #ddd;
}

.ppc-page-longcta-btn-secondary:hover {
    border-color: #e65616;
    color: #e65616;
}

.ppc-page-longcta-btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* PPC Long CTA 1 - #f8f8f8 */
.ppc-page-longcta-1 {
    background: #f8f8f8;
}

/* PPC Long CTA 2 - #ffffff */
.ppc-page-longcta-2 {
    background: #ffffff;
}

/* PPC Long CTA 3 - #f8f8f8 */
.ppc-page-longcta-3 {
    background: #f8f8f8;
}

/* PPC Services - #ffffff */
.ppc-page-services {
    background: #ffffff;
    padding: 120px 40px;
}

.ppc-page-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ppc-page-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.ppc-page-services-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.ppc-page-services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.ppc-page-services-header p {
    font-size: 18px;
    color: #666;
}

.ppc-page-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ppc-page-service-card {
  display: grid;
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.ppc-page-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ppc-page-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ppc-page-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.ppc-page-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 15px;
}

.ppc-page-service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* PPC Process - #f8f8f8 */
.ppc-page-process {
    background: #f8f8f8;
    padding: 120px 40px;
}

.ppc-page-process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ppc-page-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.ppc-page-process-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.ppc-page-process-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.ppc-page-process-header p {
    font-size: 18px;
    color: #666;
}

.ppc-page-process-timeline {
    position: relative;
}

.ppc-page-process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.ppc-page-process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.ppc-page-process-step:last-child {
    margin-bottom: 0;
}

.ppc-page-process-number {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #e65616;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #e65616;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ppc-page-process-content {
    padding-top: 15px;
}

.ppc-page-process-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.ppc-page-process-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* PPC Results - #ffffff */
.ppc-page-results {
    background: #ffffff;
    padding: 120px 40px;
}

.ppc-page-results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ppc-page-results-header {
    text-align: center;
    margin-bottom: 60px;
}

.ppc-page-results-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.ppc-page-results-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.ppc-page-results-header p {
    font-size: 18px;
    color: #666;
}

.ppc-page-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ppc-page-result-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ppc-page-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ppc-page-result-image {
    height: 200px;
    overflow: hidden;
}

.ppc-page-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ppc-page-result-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ppc-page-result-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.ppc-page-result-content {
    padding: 30px;
}

.ppc-page-result-industry {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 10px;
}

.ppc-page-result-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.ppc-page-result-content > p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.ppc-page-result-metrics {
    display: flex;
    gap: 30px;
}

.ppc-page-result-metric {
    text-align: center;
}

.ppc-page-result-metric-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #e65616;
}

.ppc-page-result-metric-label {
    font-size: 13px;
    color: #888;
}

/* PPC FAQ - #f8f8f8 */
.ppc-page-faq {
    background: #f8f8f8;
    padding: 120px 40px;
}

.ppc-page-faq-container {
    width: 100%;
}

.ppc-page-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.ppc-page-faq-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.ppc-page-faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
}

.ppc-page-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ppc-page-faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ppc-page-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ppc-page-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    transition: all 0.3s ease;
}

.ppc-page-faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: #e65616;
    transition: transform 0.3s ease;
}

.ppc-page-faq-item.active .ppc-page-faq-question svg {
    transform: rotate(180deg);
}

.ppc-page-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.ppc-page-faq-item.active .ppc-page-faq-answer {
    max-height: 500px;
}

.ppc-page-faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* PPC Utility Classes */
.ppc-page-hero .black-text,
.ppc-page-info .black-text,
.ppc-page-longcta .black-text {
    color: inherit;
}

.ppc-page-hero .highlight-text-italic,
.ppc-page-info .highlight-text-italic,
.ppc-page-services .highlight-text-italic,
.ppc-page-process .highlight-text-italic,
.ppc-page-results .highlight-text-italic,
.ppc-page-faq .highlight-text-italic,
.ppc-page-longcta .highlight-text-italic {
    color: #e65616;
    font-style: italic;
}

.ppc-page-info .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #e65616;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.ppc-page-info .cta-button:hover {
    background: #d14a0f;
    transform: translateY(-2px);
}

/* ================================================
   PPC PAGE RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .ppc-page-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .ppc-page-info {
        padding: 80px 20px;
    }
    
    .ppc-page-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ppc-page-info-reversed {
        direction: ltr;
    }
    
    .ppc-page-info-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .ppc-page-results {
        padding: 80px 20px;
    }
    
    .ppc-page-results-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .ppc-page-hero {
        min-height: auto;
    }

.ppc-page-info-container {
  text-align: center;
}

.ppc-page-longcta-feature {
  text-align: center;
  justify-items: center;
  align-items: center;
  align-content: center;
  justify-content: center;
}
    

.ppc-page-result-content {
  justify-items: center;
  text-align: center;
}
    .ppc-page-service-card {
  text-align: center;
  justify-items: center;
  align-items: center;
  align-content: center;
  justify-content: center;
    }


    .ppc-page-hero-content {
        padding: 140px 20px 80px;
    }
    
    .ppc-page-hero h1 {
        font-size: 42px;
    }
    
    .ppc-page-hero-description {
        font-size: 18px;
    }
    
    .ppc-page-hero-shapes {
        display: none;
    }
    
    .ppc-page-stats {
        padding: 60px 20px;
    }
    
    .ppc-page-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .ppc-page-stat-number {
        font-size: 36px;
    }
    
    .ppc-page-longcta {
        padding: 60px 20px;
    }
    
    .ppc-page-longcta-features {
        grid-template-columns: 1fr;
    }
    
    .ppc-page-longcta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ppc-page-services {
        padding: 80px 20px;
    }
    
    .ppc-page-process {
        padding: 80px 20px;
    }
    
    .ppc-page-process-timeline::before {
        left: 30px;
    }
    
    .ppc-page-process-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .ppc-page-process-step {
        gap: 25px;
    }
    
    .ppc-page-faq {
        padding: 80px 20px;
    }

    .ppc-page-faq-container .faq-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ppc-page-faq-container .faq-split-image {
        order: -1;
    }
    
    .ppc-page-faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .ppc-page-faq-answer p {
        padding: 0 20px 20px;
    }
    
    .ppc-page-info-1::before,
    .ppc-page-info-1::after,
    .ppc-page-info-2::before,
    .ppc-page-info-2::after,
    .ppc-page-info-3::before,
    .ppc-page-info-3::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .ppc-page-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .ppc-page-stats-container {
            }
    
    .ppc-page-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ppc-page-longcta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ppc-page-result-metrics {
        flex-direction: column;
        gap: 15px;
    }
}
/* ================================================
   WEB DESIGN PAGE STYLES - All classes prefixed with webdesign-page-
   Background pattern: #f8f8f8 → #ffffff alternating from stats
   ================================================ */

/* Web Design Hero */
.webdesign-page-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1e;
}

.webdesign-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.webdesign-page-hero-video,
.webdesign-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webdesign-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.webdesign-page-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 180px 5% 120px;
}

.webdesign-page-hero-text {
    max-width: 1000px;
}

.webdesign-page-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.webdesign-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.webdesign-page-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}


.webdesign-page-shape {
    position: absolute;
    transform: rotate(45deg);
}

.webdesign-page-shape-1 {
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(230, 86, 22, 0.15);
    animation: float 8s ease-in-out infinite;
}

.webdesign-page-shape-2 {
    top: 150px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: rgba(51, 51, 51, 0.3);
    animation: float 10s ease-in-out infinite reverse;
}

.webdesign-page-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Web Design Stats - #f8f8f8 */
.webdesign-page-stats {
    background: #f8f8f8;
    padding: 80px 40px;
}

.webdesign-page-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.webdesign-page-stat-item {
    text-align: center;
}

.webdesign-page-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #e65616;
    margin-bottom: 10px;
}

.webdesign-page-stat-label {
    font-size: 16px;
    color: #666;
}

/* Web Design Info Sections Base */
.webdesign-page-info {
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
}

.webdesign-page-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.webdesign-page-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 60px;
    text-align: center;
}

.webdesign-page-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.webdesign-page-info-reversed {
    direction: rtl;
}

.webdesign-page-info-reversed > * {
    direction: ltr;
}

.webdesign-page-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.webdesign-page-info-text p {
    margin-bottom: 20px;
}

.webdesign-page-info-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.webdesign-page-info-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webdesign-page-info-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: #ccc;
}

/* Web Design Info 1 - #ffffff */
.webdesign-page-info-1 {
    background: #ffffff;
}

.webdesign-page-info-1::before {
  content: '';
  position: absolute;
  top: -875px;
  right: -389px;
  width: 150px;
  height: 1430px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(90deg);
  z-index: 0;
  animation: float 5s ease-in-out infinite;
}

.webdesign-page-info-1::after {
  content: '';
  position: absolute;
  top: -640px;
  right: -110px;
  width: 150px;
  height: 1050px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 4s ease-in-out infinite reverse;
}

/* Web Design Long CTA Base */
.webdesign-page-longcta {
    padding: 100px 40px;
}

.webdesign-page-longcta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.webdesign-page-longcta-content {
    text-align: center;
}

.webdesign-page-longcta-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.webdesign-page-longcta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.webdesign-page-longcta-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.webdesign-page-longcta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.webdesign-page-longcta-feature {
  display: grid;
    text-align: left;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.webdesign-page-longcta-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.webdesign-page-longcta-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.webdesign-page-longcta-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 8px;
}

.webdesign-page-longcta-feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.webdesign-page-longcta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.webdesign-page-longcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.webdesign-page-longcta-btn-primary {
    background: #e65616;
    color: #fff;
}

.webdesign-page-longcta-btn-primary:hover {
    background: #d14a0f;
    transform: translateY(-2px);
}

.webdesign-page-longcta-btn-primary svg {
    width: 20px;
    height: 20px;
}

.webdesign-page-longcta-btn-secondary {
    background: transparent;
    color: #1a1a1e;
    border: 2px solid #ddd;
}

.webdesign-page-longcta-btn-secondary:hover {
    border-color: #e65616;
    color: #e65616;
}

.webdesign-page-longcta-btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* Web Design Long CTA 1 - #f8f8f8 */
.webdesign-page-longcta-1 {
    background: #f8f8f8;
}

/* Web Design Services - #ffffff */
.webdesign-page-services {
    background: #ffffff;
    padding: 120px 40px;
}

.webdesign-page-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.webdesign-page-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.webdesign-page-services-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.webdesign-page-services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.webdesign-page-services-header p {
    font-size: 18px;
    color: #666;
}

.webdesign-page-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.webdesign-page-service-card {
    display: grid;
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.webdesign-page-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.webdesign-page-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.webdesign-page-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.webdesign-page-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 15px;
}

.webdesign-page-service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Web Design Info 2 - #f8f8f8 */
.webdesign-page-info-2 {
    background: #f8f8f8;
}

.webdesign-page-info-2::before {
  content: '';
  position: absolute;
  bottom: -220px;
  right: 40px;
  width: 150px;
  height: 630px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.webdesign-page-info-2::after {
  content: '';
  position: absolute;
  bottom: -220px;
  right: 160px;
  width: 150px;
  height: 870px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 9s ease-in-out infinite reverse;
}

/* Web Design Long CTA 2 - #ffffff */
.webdesign-page-longcta-2 {
    background: #ffffff;
}

/* Web Design Process - #f8f8f8 */
.webdesign-page-process {
    background: #f8f8f8;
    padding: 120px 40px;
}

.webdesign-page-process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.webdesign-page-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.webdesign-page-process-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.webdesign-page-process-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.webdesign-page-process-header p {
    font-size: 18px;
    color: #666;
}

.webdesign-page-process-timeline {
    position: relative;
}

.webdesign-page-process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.webdesign-page-process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.webdesign-page-process-step:last-child {
    margin-bottom: 0;
}

.webdesign-page-process-number {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #e65616;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #e65616;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.webdesign-page-process-content {
    padding-top: 15px;
}

.webdesign-page-process-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.webdesign-page-process-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Web Design Info 3 - #ffffff */
.webdesign-page-info-3 {
    background: #ffffff;
}

.webdesign-page-info-3::before {
  content: '';
  position: absolute;
  bottom: -230px;
  left: 50px;
  width: 150px;
  height: 530px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.webdesign-page-info-3::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -10px;
  width: 150px;
  height: 480px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 9s ease-in-out infinite reverse;
}

/* Web Design Long CTA 3 - #f8f8f8 */
.webdesign-page-longcta-3 {
    background: #f8f8f8;
}

/* Web Design Results - #ffffff */
.webdesign-page-results {
    background: #ffffff;
    padding: 120px 40px;
}

.webdesign-page-results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.webdesign-page-results-header {
    text-align: center;
    margin-bottom: 60px;
}

.webdesign-page-results-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.webdesign-page-results-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.webdesign-page-results-header p {
    font-size: 18px;
    color: #666;
}

.webdesign-page-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.webdesign-page-result-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.webdesign-page-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.webdesign-page-result-image {
    height: 200px;
    overflow: hidden;
}

.webdesign-page-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webdesign-page-result-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.webdesign-page-result-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.webdesign-page-result-content {
    padding: 30px;
}

.webdesign-page-result-industry {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 10px;
}

.webdesign-page-result-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.webdesign-page-result-content > p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.webdesign-page-result-metrics {
    justify-items: left;
    gap: 30px;
}

.webdesign-page-result-metric {
    text-align: center;
}

.webdesign-page-result-metric-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #e65616;
}

.webdesign-page-result-metric-label {
    font-size: 13px;
    color: #888;
}

/* Web Design FAQ - #f8f8f8 */
.webdesign-page-faq {
    background: #f8f8f8;
    padding: 120px 40px;
}

.webdesign-page-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.webdesign-page-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.webdesign-page-faq-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.webdesign-page-faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
}

.webdesign-page-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.webdesign-page-faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.webdesign-page-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.webdesign-page-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    transition: all 0.3s ease;
}

.webdesign-page-faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: #e65616;
    transition: transform 0.3s ease;
}

.webdesign-page-faq-item.active .webdesign-page-faq-question svg {
    transform: rotate(180deg);
}

.webdesign-page-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.webdesign-page-faq-item.active .webdesign-page-faq-answer {
    max-height: 500px;
}

.webdesign-page-faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Web Design Utility Classes */
.webdesign-page-hero .black-text,
.webdesign-page-info .black-text,
.webdesign-page-longcta .black-text {
    color: inherit;
}

.webdesign-page-hero .highlight-text-italic,
.webdesign-page-info .highlight-text-italic,
.webdesign-page-services .highlight-text-italic,
.webdesign-page-process .highlight-text-italic,
.webdesign-page-results .highlight-text-italic,
.webdesign-page-faq .highlight-text-italic,
.webdesign-page-longcta .highlight-text-italic {
    color: #e65616;
    font-style: italic;
}

.webdesign-page-info .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #e65616;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.webdesign-page-info .cta-button:hover {
    background: #d14a0f;
    transform: translateY(-2px);
}

/* ================================================
   WEB DESIGN PAGE RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .webdesign-page-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .webdesign-page-info {
        padding: 80px 20px;
    }
    
    .webdesign-page-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .webdesign-page-info-reversed {
        direction: ltr;
    }
    
    .webdesign-page-info-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .webdesign-page-results {
        padding: 80px 20px;
    }
    
    .webdesign-page-results-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .webdesign-page-hero {
        min-height: auto;
    }

    .webdesign-page-info-container {
        text-align: center;
    }

    .webdesign-page-longcta-feature {
        text-align: center;
        justify-items: center;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .webdesign-page-result-content {
        text-align: center;
        justify-items: center;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .webdesign-page-service-card {
        text-align: center;
        justify-items: center;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    .webdesign-page-hero-content {
        padding: 140px 20px 80px;
    }
    
    .webdesign-page-hero h1 {
        font-size: 42px;
    }
    
    .webdesign-page-hero-description {
        font-size: 18px;
    }
    

    .webdesign-page-stats {
        padding: 60px 20px;
    }
    
    .webdesign-page-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .webdesign-page-stat-number {
        font-size: 36px;
    }
    
    .webdesign-page-longcta {
        padding: 60px 20px;
    }
    
    .webdesign-page-longcta-features {
        grid-template-columns: 1fr;
    }
    
    .webdesign-page-longcta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .webdesign-page-services {
        padding: 80px 20px;
    }
    
    .webdesign-page-process {
        padding: 80px 20px;
    }
    
    .webdesign-page-process-timeline::before {
        left: 30px;
    }
    
    .webdesign-page-process-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .webdesign-page-process-step {
        gap: 25px;
    }
    
    .webdesign-page-faq {
        padding: 80px 20px;
    }
    
    .webdesign-page-faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .webdesign-page-faq-answer p {
        padding: 0 20px 20px;
    }
    
    .webdesign-page-info-1::before,
    .webdesign-page-info-1::after,
    .webdesign-page-info-2::before,
    .webdesign-page-info-2::after,
    .webdesign-page-info-3::before,
    .webdesign-page-info-3::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .webdesign-page-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .webdesign-page-stats-container {
    }
    
    .webdesign-page-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .webdesign-page-longcta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .webdesign-page-result-metrics {
        flex-direction: column;
        gap: 15px;
    }
}
/* ================================================
   WEB DEVELOPMENT PAGE STYLES - All classes prefixed with webdev-page-
   Background pattern: #f8f8f8 → #ffffff alternating from stats
   ================================================ */

/* Web Dev Hero */
.webdev-page-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1e;
}

.webdev-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.webdev-page-hero-video,
.webdev-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webdev-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.webdev-page-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 180px 5% 120px;
}

.webdev-page-hero-text {
    max-width: 1000px;
}

.webdev-page-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.webdev-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.webdev-page-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.webdev-page-hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.webdev-page-shape {
    position: absolute;
    transform: rotate(45deg);
}

.webdev-page-shape-1 {
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(230, 86, 22, 0.15);
    animation: float 8s ease-in-out infinite;
}

.webdev-page-shape-2 {
    top: 150px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: rgba(51, 51, 51, 0.3);
    animation: float 10s ease-in-out infinite reverse;
}

.webdev-page-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Web Dev Stats - #f8f8f8 */
.webdev-page-stats {
    background: #f8f8f8;
    padding: 80px 40px;
}

.webdev-page-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.webdev-page-stat-item {
    text-align: center;
}

.webdev-page-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #e65616;
    margin-bottom: 10px;
}

.webdev-page-stat-label {
    font-size: 16px;
    color: #666;
}

/* Web Dev Info Sections Base */
.webdev-page-info {
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
}

.webdev-page-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.webdev-page-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 60px;
    text-align: center;
}

.webdev-page-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.webdev-page-info-reversed {
    direction: rtl;
}

.webdev-page-info-reversed > * {
    direction: ltr;
}

.webdev-page-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.webdev-page-info-text p {
    margin-bottom: 20px;
}

.webdev-page-info-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.webdev-page-info-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.webdev-page-info-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: #ccc;
}

/* Web Dev Info 1 - #ffffff */
.webdev-page-info-1 {
    background: #ffffff;
}


ion: float 4s ease-in-out infinite reverse;
}

/* Web Dev Long CTA Base */
.webdev-page-longcta {
    padding: 100px 40px;
}

section.webdev-page-longcta.webdev-page-longcta-1 {
  padding: 100px 40px;
}

.webdev-page-longcta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.webdev-page-longcta-content {
    text-align: center;
}

.webdev-page-longcta-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.webdev-page-longcta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.webdev-page-longcta-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.webdev-page-longcta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.webdev-page-longcta-feature {
  display: grid;
    text-align: left;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: grid;
    gap: 25px;
}

.webdev-page-longcta-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.webdev-page-longcta-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.webdev-page-longcta-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 8px;
    margin-top: -25px;
}

.webdev-page-longcta-feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.webdev-page-longcta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.webdev-page-longcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.webdev-page-longcta-btn-primary {
    background: #e65616;
    color: #fff;
}

.webdev-page-longcta-btn-primary:hover {
    background: #d14a0f;
    transform: translateY(-2px);
}

.webdev-page-longcta-btn-primary svg {
    width: 20px;
    height: 20px;
}

.webdev-page-longcta-btn-secondary {
    background: transparent;
    color: #1a1a1e;
    border: 2px solid #ddd;
}

.webdev-page-longcta-btn-secondary:hover {
    border-color: #e65616;
    color: #e65616;
}

.webdev-page-longcta-btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* Web Dev Long CTA 1 - #f8f8f8 */
.webdev-page-longcta-1 {
    background: #f8f8f8;
}

/* Web Dev Services - #ffffff */
.webdev-page-services {
    background: #ffffff;
    padding: 120px 40px;
}

.webdev-page-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.webdev-page-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.webdev-page-services-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.webdev-page-services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.webdev-page-services-header p {
    font-size: 18px;
    color: #666;
}

.webdev-page-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.webdev-page-service-card {
  display: grid;
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: grid;
    gap: 25px;
}

.webdev-page-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.webdev-page-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.webdev-page-service-icon svg {
    width: 48px;
    height: 48px;
    stroke: #fff;
}

.webdev-page-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 15px;
}

.webdev-page-service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-top: -25px;
}

/* Web Dev Info 2 - #f8f8f8 */
.webdev-page-info-2 {
    background: #f8f8f8;
}

/* Web Dev Long CTA 2 - #ffffff */
.webdev-page-longcta-2 {
    background: #ffffff;
    padding: 80px 20px;
}

/* Web Dev Process - #f8f8f8 */
.webdev-page-process {
    background: #f8f8f8;
    padding: 120px 40px;
}

.webdev-page-process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.webdev-page-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.webdev-page-process-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.webdev-page-process-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.webdev-page-process-header p {
    font-size: 18px;
    color: #666;
}

.webdev-page-process-timeline {
    position: relative;
}

.webdev-page-process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.webdev-page-process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.webdev-page-process-step:last-child {
    margin-bottom: 0;
}

.webdev-page-process-number {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #e65616;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #e65616;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.webdev-page-process-content {
    padding-top: 15px;
}

.webdev-page-process-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.webdev-page-process-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Web Dev Info 3 - #ffffff */
.webdev-page-info-3 {
    background: #ffffff;
}

/* Web Dev Long CTA 3 - #f8f8f8 */
.webdev-page-longcta-3 {
    background: #f8f8f8;
    padding: 80px 20px;
}

/* Web Dev Results - #ffffff */
.webdev-page-results {
    background: #ffffff;
    padding: 120px 40px;
}

.webdev-page-results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.webdev-page-results-header {
    text-align: center;
    margin-bottom: 60px;
}

.webdev-page-results-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.webdev-page-results-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.webdev-page-results-header p {
    font-size: 18px;
    color: #666;
}

.webdev-page-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.webdev-page-result-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.webdev-page-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.webdev-page-result-image {
    height: 200px;
    overflow: hidden;
}

.webdev-page-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webdev-page-result-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.webdev-page-result-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.webdev-page-result-content {
    padding: 30px;
}

.webdev-page-result-industry {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 10px;
}

.webdev-page-result-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.webdev-page-result-content > p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.webdev-page-result-metrics {
    display: flex;
    gap: 30px;
}

.webdev-page-result-metric {
    text-align: center;
}

.webdev-page-result-metric-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #e65616;
}

.webdev-page-result-metric-label {
    font-size: 13px;
    color: #888;
}

/* Web Dev FAQ - #f8f8f8 */
.webdev-page-faq {
    background: #f8f8f8;
    padding: 120px 40px;
}

.webdev-page-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.webdev-page-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.webdev-page-faq-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.webdev-page-faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
}

.webdev-page-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.webdev-page-faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.webdev-page-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.webdev-page-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
}

.webdev-page-faq-question svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: #e65616;
    transition: transform 0.3s ease;
}

.webdev-page-faq-item.active .webdev-page-faq-question svg {
    transform: rotate(180deg);
}

.webdev-page-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.webdev-page-faq-item.active .webdev-page-faq-answer {
    max-height: 500px;
}

.webdev-page-faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Web Dev Utility Classes */
.webdev-page-hero .black-text,
.webdev-page-info .black-text,
.webdev-page-longcta .black-text {
    color: inherit;
}

.webdev-page-hero .highlight-text-italic,
.webdev-page-info .highlight-text-italic,
.webdev-page-services .highlight-text-italic,
.webdev-page-process .highlight-text-italic,
.webdev-page-results .highlight-text-italic,
.webdev-page-faq .highlight-text-italic,
.webdev-page-longcta .highlight-text-italic {
    color: #e65616;
    font-style: italic;
}

.webdev-page-info .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #e65616;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.webdev-page-info .cta-button:hover {
    background: #d14a0f;
    transform: translateY(-2px);
}

/* ================================================
   WEB DEVELOPMENT PAGE RESPONSIVE
   ================================================ */

@media (max-width: 1024px) {
    .webdev-page-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .webdev-page-info {
        padding: 80px 20px;
    }
    
    .webdev-page-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .webdev-page-info-reversed {
        direction: ltr;
    }
    
    .webdev-page-info-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .webdev-page-results {
        padding: 80px 20px;
    }
    
    .webdev-page-results-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .webdev-page-hero {
        min-height: auto;
    }

    .webdev-page-info-container {
        text-align: center;
    }

    .webdev-page-longcta-feature {
        text-align: center;
        justify-items: center;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 20px;
        display: grid;
    }

    .webdev-page-result-content {
        text-align: center;
        justify-items: center;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 20px;
        display: grid;
    }

    .webdev-page-service-card {
        text-align: center;
        justify-items: center;
        justify-content: center;
        align-items: center;
        align-content: center;
        gap: 20px;
        display: grid;
    }

    .webdev-page-hero-content {
        padding: 140px 20px 80px;
    }
    
    .webdev-page-hero h1 {
        font-size: 42px;
    }
    
    .webdev-page-hero-description {
        font-size: 18px;
    }

    .webdev-page-stats {
        padding: 60px 20px;
    }
    
    .webdev-page-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .webdev-page-stat-number {
        font-size: 36px;
    }
    
    .webdev-page-longcta {
        padding: 60px 20px;
    }
    
    .webdev-page-longcta-features {
        grid-template-columns: 1fr;
    }
    
    .webdev-page-longcta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .webdev-page-services {
        padding: 80px 20px;
    }
    
    .webdev-page-process {
        padding: 80px 20px;
    }
    
    .webdev-page-process-timeline::before {
        left: 30px;
    }
    
    .webdev-page-process-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .webdev-page-process-step {
        gap: 25px;
    }
    
    .webdev-page-faq {
        padding: 80px 20px;
    }
    
    .webdev-page-faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .webdev-page-faq-answer p {
        padding: 0 20px 20px;
    }
    
    .webdev-page-info-1::before,
    .webdev-page-info-1::after,
    .webdev-page-info-2::before,
    .webdev-page-info-2::after,
    .webdev-page-info-3::before,
    .webdev-page-info-3::after,
    .webdev-page-hero-shapes {
        display: none;
    }
}

@media (max-width: 600px) {
    .webdev-page-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .webdev-page-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .webdev-page-longcta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .webdev-page-result-metrics {
        flex-direction: column;
        gap: 15px;
    }
}

/* Reduced motion for Web Dev Page */
@media (prefers-reduced-motion: reduce) {
    .webdev-page-info-1::after,
    .webdev-page-info-1::before,
    .webdev-page-info-2::after,
    .webdev-page-info-2::before,
    .webdev-page-info-3::after,
    .webdev-page-info-3::before,
    .webdev-page-shape-1,
    .webdev-page-shape-2 {
        animation: none;
    }
}
/* ================================================
   CRO PAGE STYLES - All classes prefixed with cro-page-
   Background pattern: #f8f8f8 → #ffffff alternating from stats
   ================================================ */

/* CRO Hero */
.cro-page-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1e;
}

.cro-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.cro-page-hero-video,
.cro-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cro-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.cro-page-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 180px 5% 120px;
}

.cro-page-hero-text {
    max-width: 1000px;
}

.cro-page-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cro-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.cro-page-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

/* CRO Hero Shapes */
.cro-page-hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.cro-page-shape {
    position: absolute;
    transform: rotate(45deg);
}

.cro-page-shape-1 {
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(230, 86, 22, 0.15);
    animation: float 8s ease-in-out infinite;
}

.cro-page-shape-2 {
    top: 150px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: rgba(51, 51, 51, 0.3);
    animation: float 10s ease-in-out infinite reverse;
}

.cro-page-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* CRO Stats - #f8f8f8 */
.cro-page-stats {
    background: #f8f8f8;
    padding: 80px 40px;
}

.cro-page-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.cro-page-stat-item {
    text-align: center;
}

.cro-page-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #e65616;
    margin-bottom: 10px;
}

.cro-page-stat-label {
    font-size: 16px;
    color: #666;
}

/* CRO Info Sections Base */
.cro-page-info {
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
}

.cro-page-info-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cro-page-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 60px;
    text-align: center;
}

.cro-page-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cro-page-info-reversed {
    direction: rtl;
}

.cro-page-info-reversed > * {
    direction: ltr;
}

.cro-page-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.cro-page-info-text p {
    margin-bottom: 20px;
}

.cro-page-info-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.cro-page-info-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cro-page-info-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: #ccc;
}

/* CRO Info 1 - #ffffff */
.cro-page-info-1 {
    background: #ffffff;
}

/* CRO Long CTA Base */
.cro-page-longcta {
    padding: 100px 40px;
}

.cro-page-longcta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cro-page-longcta-content {
    text-align: center;
}

.cro-page-longcta-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.cro-page-longcta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.cro-page-longcta-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cro-page-longcta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.cro-page-longcta-feature {
  display: grid;
    text-align: left;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.cro-page-longcta-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.cro-page-longcta-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.cro-page-longcta-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 8px;
}

.cro-page-longcta-feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.cro-page-longcta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.cro-page-longcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cro-page-longcta-btn-primary {
    background: #e65616;
    color: #fff;
}

.cro-page-longcta-btn-primary:hover {
    background: #d14a0f;
    transform: translateY(-2px);
}

.cro-page-longcta-btn-primary svg {
    width: 20px;
    height: 20px;
}

.cro-page-longcta-btn-secondary {
    background: transparent;
    color: #1a1a1e;
    border: 2px solid #ddd;
}

.cro-page-longcta-btn-secondary:hover {
    border-color: #e65616;
    color: #e65616;
}

.cro-page-longcta-btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* CRO Long CTA 1 - #f8f8f8 */
.cro-page-longcta-1 {
    background: #f8f8f8;
}

/* CRO Services - #ffffff */
.cro-page-services {
    background: #ffffff;
    padding: 120px 40px;
}

.cro-page-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cro-page-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.cro-page-services-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.cro-page-services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cro-page-services-header p {
    font-size: 18px;
    color: #666;
}

.cro-page-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cro-page-service-card {
  display: grid;
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.cro-page-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cro-page-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.cro-page-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.cro-page-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 15px;
}

.cro-page-service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* CRO Info 2 - #f8f8f8 */
.cro-page-info-2 {
    background: #f8f8f8;
}



/* CRO Long CTA 2 - #ffffff */
.cro-page-longcta-2 {
    background: #ffffff;
}

/* CRO Process - #f8f8f8 */
.cro-page-process {
    background: #f8f8f8;
    padding: 120px 40px;
}

.cro-page-process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cro-page-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.cro-page-process-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.cro-page-process-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cro-page-process-header p {
    font-size: 18px;
    color: #666;
}

.cro-page-process-timeline {
    position: relative;
}

.cro-page-process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.cro-page-process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.cro-page-process-step:last-child {
    margin-bottom: 0;
}

.cro-page-process-number {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #e65616;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #e65616;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.cro-page-process-content {
    padding-top: 15px;
}

.cro-page-process-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.cro-page-process-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* CRO Info 3 - #ffffff */
.cro-page-info-3 {
    background: #ffffff;
}



/* CRO Long CTA 3 - #f8f8f8 */
.cro-page-longcta-3 {
    background: #f8f8f8;
}

/* CRO Results - #ffffff */
.cro-page-results {
    background: #ffffff;
    padding: 120px 40px;
}

.cro-page-results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cro-page-results-header {
    text-align: center;
    margin-bottom: 60px;
}

.cro-page-results-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.cro-page-results-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.cro-page-results-header p {
    font-size: 18px;
    color: #666;
}

.cro-page-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cro-page-result-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cro-page-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cro-page-result-image {
    height: 200px;
    overflow: hidden;
}

.cro-page-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cro-page-result-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cro-page-result-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.cro-page-result-content {
    padding: 30px;
}

.cro-page-result-industry {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 10px;
}

.cro-page-result-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.cro-page-result-content > p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.cro-page-result-metrics {
    display: flex;
    gap: 30px;
}

.cro-page-result-metric {
    text-align: center;
}

.cro-page-result-metric-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #e65616;
}

.cro-page-result-metric-label {
    font-size: 13px;
    color: #888;
}

/* CRO FAQ - #f8f8f8 */
.cro-page-faq {
    background: #f8f8f8;
    padding: 120px 40px;
}

.cro-page-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.cro-page-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.cro-page-faq-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.cro-page-faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
}

.cro-page-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cro-page-faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cro-page-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cro-page-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
}

.cro-page-faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.cro-page-faq-item.active .cro-page-faq-question svg {
    transform: rotate(180deg);
}

.cro-page-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.cro-page-faq-item.active .cro-page-faq-answer {
    max-height: 300px;
}

.cro-page-faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* ================================================
   CRO PAGE RESPONSIVE STYLES
   ================================================ */

@media (max-width: 1024px) {
    .cro-page-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .cro-page-info {
        padding: 80px 20px;
    }
    
    .cro-page-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cro-page-info-reversed {
        direction: ltr;
    }
    
    .cro-page-info-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .cro-page-results {
        padding: 80px 20px;
    }
    
    .cro-page-results-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .cro-page-hero {
        min-height: auto;
    }

    .cro-page-info-container {
      text-align: center;
    }

    .cro-page-longcta-feature {
      text-align: center;
      justify-items: center;
      justify-content: center;
      align-items: center;
      align-content: center;
    }
    
    .cro-page-result-content {
      text-align: center;
      justify-items: center;
      justify-content: center;
      align-items: center;
      align-content: center;
    }

    .cro-page-service-card {
      text-align: center;
      justify-items: center;
      justify-content: center;
      align-items: center;
      align-content: center;
    }

    .cro-page-hero-content {
        padding: 140px 20px 80px;
    }
    
    .cro-page-hero h1 {
        font-size: 42px;
    }
    
    .cro-page-hero-description {
        font-size: 18px;
    }
    
    .cro-page-hero-shapes {
        display: none;
    }
    
    .cro-page-stats {
        padding: 60px 20px;
    }
    
    .cro-page-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .cro-page-stat-number {
        font-size: 36px;
    }
    
    .cro-page-longcta {
        padding: 60px 20px;
    }
    
    .cro-page-longcta-features {
        grid-template-columns: 1fr;
    }
    
    .cro-page-longcta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cro-page-services {
        padding: 80px 20px;
    }
    
    .cro-page-process {
        padding: 80px 20px;
    }
    
    .cro-page-process-timeline::before {
        left: 30px;
    }
    
    .cro-page-process-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .cro-page-process-step {
        gap: 25px;
    }
    
    .cro-page-faq {
        padding: 80px 20px;
    }
    
    .cro-page-faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .cro-page-faq-answer p {
        padding: 0 20px 20px;
    }
    
    .cro-page-info-1::before,
    .cro-page-info-1::after,
    .cro-page-info-2::before,
    .cro-page-info-2::after,
    .cro-page-info-3::before,
    .cro-page-info-3::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .cro-page-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    
    .cro-page-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cro-page-longcta-btn {
        width: 100%;
        justify-content: center;
    }
}
/* ============================================
   EMAIL MARKETING PAGE STYLES
   All classes prefixed with email-page- for independent styling
   ============================================ */

/* Hero Section - Dark Background */
.email-page-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1e;
}

.email-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.email-page-hero-video,
.email-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.email-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.email-page-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 180px 5% 120px;
}

.email-page-hero-text {
    max-width: 1000px;
}

.email-page-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.email-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.email-page-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.email-page-shape {
    position: absolute;
    transform: rotate(45deg);
}

.email-page-shape-1 {
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(230, 86, 22, 0.15);
    animation: float 8s ease-in-out infinite;
}

.email-page-shape-2 {
    top: 150px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: rgba(51, 51, 51, 0.3);
    animation: float 10s ease-in-out infinite reverse;
}

.email-page-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Email Stats Section - #f8f8f8 */
.email-page-stats {
    background: #f8f8f8;
    padding: 80px 40px;
}

.email-page-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.email-page-stat-item {
    text-align: center;
}

.email-page-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #e65616;
    margin-bottom: 10px;
}

.email-page-stat-label {
    font-size: 16px;
    color: #666;
}

/* Email Info Sections Base */
.email-page-info {
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
}

.email-page-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.email-page-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 60px;
    text-align: center;
}

.email-page-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.email-page-info-reversed {
    direction: rtl;
}

.email-page-info-reversed > * {
    direction: ltr;
}

.email-page-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.email-page-info-text p {
    margin-bottom: 20px;
}

.email-page-info-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.email-page-info-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-page-info-placeholder svg {
    width: 80px;
    height: 80px;
    color: #ccc;
}

/* Info Section 1 - White background */
.email-page-info-1 {
    background: #ffffff;
}

/* Info Section 2 - #f8f8f8 background */
.email-page-info-2 {
    background: #f8f8f8;
}

/* Info Section 3 - #f8f8f8 background */
.email-page-info-3 {
    background: #f8f8f8;
}

/* Decorative elements for info sections */
.email-page-info-1::before,
.email-page-info-2::before, {
  content: '';
  position: absolute;
  top: -875px;
  right: -389px;
  width: 150px;
  height: 1430px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(90deg);
  z-index: 0;
  animation: float 5s ease-in-out infinite;
}

.email-page-info-1::after,
.email-page-info-2::after, {
  content: '';
  position: absolute;
  top: -640px;
  right: -110px;
  width: 150px;
  height: 1050px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 4s ease-in-out infinite reverse;
}

.email-page-info-3::before {
  content: '';
  position: absolute;
  bottom: -340px;
  right: -10px;
  width: 150px;
  height: 1350px;
  background: rgba(230, 86, 22, 1);
  transform: rotate(45deg);
  z-index: 0;
  animation: float 4s ease-in-out infinite reverse;
}

.email-page-info-3::after {
    content: '';
  position: absolute;
  bottom: -435px;
  right: -189px;
  width: 150px;
  height: 1430px;
  background: rgba(51, 51, 51, 1);
  transform: rotate(90deg);
  z-index: 0;
  animation: float 5s ease-in-out infinite;
}

/* Email Long CTA Sections */
.email-page-longcta {
    padding: 100px 40px;
}

.email-page-longcta-1 {
    background: #f8f8f8;
}

.email-page-longcta-2 {
    background: #ffffff;
}

.email-page-longcta-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.email-page-longcta-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.email-page-longcta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.email-page-longcta-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.email-page-longcta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.email-page-longcta-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.email-page-longcta-feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.email-page-longcta-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
    stroke: white;
}

.email-page-longcta-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 5px;
}

.email-page-longcta-feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.email-page-longcta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.email-page-longcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-page-longcta-btn-primary {
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    color: white;
}

.email-page-longcta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 86, 22, 0.4);
}

.email-page-longcta-btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.email-page-longcta-btn-primary:hover svg {
    transform: translateX(5px);
}

.email-page-longcta-btn-secondary {
    background: white;
    color: #1a1a1e;
    border: 2px solid #e0e0e0;
}

.email-page-longcta-btn-secondary:hover {
    border-color: #e65616;
    color: #e65616;
}

.email-page-longcta-btn-secondary svg {
    width: 20px;
    height: 20px;
}

/* Email Services Section - White background */
.email-page-services {
    background: #ffffff;
    padding: 120px 40px;
}

.email-page-services-alt {
    background: #ffffff;
}

.email-page-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.email-page-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.email-page-services-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.email-page-services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1e;
}

.email-page-services-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.email-page-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.email-page-services-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

.email-page-service-card {
  display: grid;
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.email-page-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.email-page-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.email-page-service-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    stroke: white;
}

.email-page-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1e;
    margin-bottom: 15px;
}

.email-page-service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Email Process Section - White background */
.email-page-process {
    background: #ffffff;
    padding: 120px 40px;
}

.email-page-process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.email-page-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.email-page-process-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.email-page-process-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1e;
}

.email-page-process-header p {
    font-size: 18px;
    color: #666;
}

.email-page-process-timeline {
    position: relative;
}

.email-page-process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e65616 0%, rgba(230, 86, 22, 0.2) 100%);
}

.email-page-process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.email-page-process-step:last-child {
    margin-bottom: 0;
}

.email-page-process-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
}

.email-page-process-content {
    padding-top: 15px;
}

.email-page-process-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.email-page-process-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Email FAQ Section - #f8f8f8 background */
.email-page-faq {
    background: #f8f8f8;
    padding: 120px 40px;
}

.email-page-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.email-page-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.email-page-faq-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.email-page-faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1e;
}

.email-page-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.email-page-faq-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.email-page-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    transition: all 0.3s ease;
}

.email-page-faq-question:hover {
    color: #e65616;
}

.email-page-faq-question svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: #e65616;
    transition: transform 0.3s ease;
}

.email-page-faq-item.active .email-page-faq-question svg {
    transform: rotate(180deg);
}

.email-page-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.email-page-faq-item.active .email-page-faq-answer {
    max-height: 500px;
}

.email-page-faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* ============================================
   EMAIL MARKETING PAGE - RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
    .email-page-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .email-page-services-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .email-page-info-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .email-page-info-reversed {
        direction: ltr;
    }
    
    .email-page-info-image {
        order: -1;
    }
    
    .email-page-longcta-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .email-page-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .email-page-hero {
        min-height: 70vh;
    }
    .email-page-info-content {
      text-align: center;
    }

    .email-page-service-card {
      justify-items: center;
      text-align: center;
      justify-content: center;
      align-items: center;
      align-content: center;
    }

    .email-page-hero-content {
        padding: 140px 20px 80px;
    }
    
    .email-page-hero h1 {
        font-size: 42px;
    }
    
    .email-page-hero-description {
        font-size: 18px;
    }
    
    .email-page-hero-shapes {
        display: none;
    }
    
    .email-page-stats {
        padding: 60px 20px;
    }
    
    .email-page-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .email-page-stat-number {
        font-size: 36px;
    }
    
    .email-page-info {
        padding: 80px 20px;
    }
    
    .email-page-info-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .email-page-longcta {
        padding: 60px 20px;
    }
    
    .email-page-longcta-features {
        grid-template-columns: 1fr;
    }
    
    .email-page-longcta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .email-page-services {
        padding: 80px 20px;
    }
    
    .email-page-services-grid {
        grid-template-columns: 1fr;
    }
    
    .email-page-services-grid-6 {
        grid-template-columns: 1fr;
    }
    
    .email-page-process {
        padding: 80px 20px;
    }
    
    .email-page-process-timeline::before {
        left: 30px;
    }
    
    .email-page-process-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .email-page-process-step {
        gap: 25px;
    }
    
    .email-page-faq {
        padding: 80px 20px;
    }
    
    .email-page-faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .email-page-faq-answer p {
        padding: 0 20px 20px;
    }
    
    .email-page-info-1::before,
    .email-page-info-1::after,
    .email-page-info-2::before,
    .email-page-info-2::after,
    .email-page-info-3::before,
    .email-page-info-3::after {
        display: none;
    }

    .ds-page-info {
      text-align: center;
    }

    .ds-page-service-card {
      text-align: center;
      align-items: center;
      align-content: center;
      justify-items: center;
    }
    .ds-page-process-step {
      text-align: center;
      align-items: center;
    }
    .ds-page-result-content {
      text-align: center;
    }
}

@media (max-width: 600px) {
    .email-page-services-grid {
        grid-template-columns: 1fr;
    }
    
    .email-page-services-grid-6 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .email-page-hero h1 {
        font-size: 36px;
    }


    
    .email-page-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .email-page-longcta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .email-page-stats-container {
        grid-template-columns: 1fr;
    }
    
    .email-page-stat-number {
        font-size: 42px;
    }
}
/* ================================================
   CASE STUDIES PAGE STYLES
   All classes prefixed with casestudies-page-
   Background pattern: #f8f8f8 → #ffffff alternating
   ================================================ */


.light-bg {
  background-color: f8f8f8;
}

/* Case Studies Hero */
.casestudies-page-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1e;
}

.casestudies-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.casestudies-page-hero-video,
.casestudies-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.casestudies-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.casestudies-page-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 180px 5% 120px;
}

.casestudies-page-hero-text {
    max-width: 1000px;
}

.casestudies-page-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.casestudies-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.casestudies-page-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.casestudies-page-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #e65616;
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.casestudies-page-hero-btn:hover {
    background: #d64d0d;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 86, 22, 0.4);
}

.casestudies-page-hero-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.casestudies-page-hero-btn:hover svg {
    transform: translateX(5px);
}

/* Hero Decorative Shapes */
.casestudies-page-hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.casestudies-page-shape {
    position: absolute;
    transform: rotate(45deg);
}

.casestudies-page-shape-1 {
    top: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(230, 86, 22, 0.15);
    animation: csFloatShape 8s ease-in-out infinite;
}

.casestudies-page-shape-2 {
    top: 150px;
    right: 100px;
    width: 200px;
    height: 200px;
    background: rgba(230, 86, 22, 0.1);
    animation: csFloatShape 10s ease-in-out infinite reverse;
}

.casestudies-page-shape-3 {
    bottom: 50px;
    right: 200px;
    width: 150px;
    height: 150px;
    background: rgba(230, 86, 22, 0.08);
    animation: csFloatShape 12s ease-in-out infinite;
}

@keyframes csFloatShape {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

/* Container */
.casestudies-page-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Intro Section - White */
.casestudies-page-intro {
    padding: 100px 5%;
    background: #f8f8f8;
}

.casestudies-page-intro-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.casestudies-page-intro-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.casestudies-page-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1e;
    margin-bottom: 30px;
}

.casestudies-page-intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

/* Stats Section - #f8f8f8 */
.casestudies-page-stats {
    padding: 50px 5%;
    background: #ffffff;
}

.casestudies-page-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.casestudies-page-stat-item {
    text-align: center;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.casestudies-page-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.casestudies-page-stat-value {
    font-size: 56px;
    font-weight: 900;
    color: #e65616;
    line-height: 1;
}

.casestudies-page-stat-suffix {
    font-size: 36px;
    font-weight: 700;
    color: #e65616;
}

.casestudies-page-stat-label {
    display: block;
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    font-weight: 500;
}

/* Section Header */
.casestudies-page-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.casestudies-page-section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.casestudies-page-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1e;
    margin-bottom: 20px;
}

.casestudies-page-section-subheading {
    font-size: 20px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Featured Section - White */
.casestudies-page-featured {
    padding: 100px 5%;
    background: #f8f8f8;
}

.casestudies-page-featured-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.casestudies-page-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.casestudies-page-featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.casestudies-page-featured-card:nth-child(even) {
    direction: rtl;
}

.casestudies-page-featured-card:nth-child(even) > * {
    direction: ltr;
}

.casestudies-page-featured-image {
    position: relative;
    height: 100%;
    min-height: 450px;
    overflow: hidden;
}

.casestudies-page-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.casestudies-page-featured-card:hover .casestudies-page-featured-image img {
    transform: scale(1.05);
}

.casestudies-page-featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 30, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.casestudies-page-featured-card:hover .casestudies-page-featured-overlay {
    opacity: 1;
}

.casestudies-page-featured-view {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e65616;
    color: #ffffff;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.casestudies-page-featured-card:hover .casestudies-page-featured-view {
    transform: translateY(0);
}

.casestudies-page-featured-view svg {
    width: 18px;
    height: 18px;
}

.casestudies-page-featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.casestudies-page-featured-meta {
    margin-bottom: 15px;
}

.casestudies-page-featured-industry {
    display: inline-block;
    background: rgba(230, 86, 22, 0.1);
    color: #e65616;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.casestudies-page-featured-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1e;
    margin-bottom: 20px;
}

.casestudies-page-featured-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.casestudies-page-featured-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 25px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
}

.casestudies-page-featured-stat {
    text-align: center;
}

.casestudies-page-featured-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #e65616;
    margin-bottom: 5px;
}

.casestudies-page-featured-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.casestudies-page-featured-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e65616;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.casestudies-page-featured-link:hover {
    gap: 15px;
}

.casestudies-page-featured-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.casestudies-page-featured-link:hover svg {
    transform: translateX(5px);
}

/* All Case Studies Section - #f8f8f8 */
.casestudies-page-all {
    padding: 100px 5%;
    background: #ffffff;
}

.casestudies-page-all-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.casestudies-page-all-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.casestudies-page-all-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.casestudies-page-all-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.casestudies-page-all-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.casestudies-page-all-card:hover .casestudies-page-all-image img {
    transform: scale(1.1);
}

.casestudies-page-all-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 30, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.casestudies-page-all-card:hover .casestudies-page-all-overlay {
    opacity: 1;
}

.casestudies-page-all-view {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e65616;
    color: #ffffff;
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    transform: translateY(15px);
    transition: all 0.4s ease;
}

.casestudies-page-all-card:hover .casestudies-page-all-view {
    transform: translateY(0);
}

.casestudies-page-all-view svg {
    width: 16px;
    height: 16px;
}

.casestudies-page-all-content {
    padding: 30px;
}

.casestudies-page-all-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1e;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.casestudies-page-all-card:hover .casestudies-page-all-content h3 {
    color: #e65616;
}

.casestudies-page-all-services {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

/* Clients Section - White */
.casestudies-page-clients {
    padding: 100px 5%;
    background: #f8f8f8;
}

.casestudies-page-clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.casestudies-page-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: #a4a4a4;
    border-radius: 15px;
    height: 120px;
    transition: all 0.3s ease;
}

.casestudies-page-client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.casestudies-page-client-logo img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.casestudies-page-client-logo:hover img {
    opacity: 1;
}

/* CTA Section Override - #f8f8f8 */
.casestudies-page-cta {
    background: #ffffff !important;
}

/* ================================================
   CASE STUDIES PAGE RESPONSIVE STYLES
   ================================================ */

@media (max-width: 1200px) {
    .casestudies-page-hero h1 {
        font-size: 56px;
    }
    
    .casestudies-page-intro h2,
    .casestudies-page-section-header h2 {
        font-size: 44px;
    }
    
    .casestudies-page-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casestudies-page-featured-card {
        grid-template-columns: 1fr;
    }
    
    .casestudies-page-featured-card:nth-child(even) {
        direction: ltr;
    }
    
    .casestudies-page-featured-image {
        min-height: 350px;
    }
    
    .casestudies-page-all-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .casestudies-page-clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .casestudies-page-hero {
        min-height: 70vh;
    }
    
    .casestudies-page-hero h1 {
        font-size: 48px;
    }
    
    .casestudies-page-hero-description {
        font-size: 18px;
    }
    
    .casestudies-page-hero-shapes {
        display: none;
    }
    
    .casestudies-page-intro,
    .casestudies-page-featured,
    .casestudies-page-all,
    .casestudies-page-clients {
        padding: 50px 5%;
    }
    
    .casestudies-page-intro h2,
    .casestudies-page-section-header h2 {
        font-size: 38px;
    }
    
    .casestudies-page-intro-text,
    .casestudies-page-section-subheading {
        font-size: 18px;
    }
    
    .casestudies-page-stat-value {
        font-size: 44px;
    }
    
    .casestudies-page-stat-suffix {
        font-size: 28px;
    }
    
    .casestudies-page-featured-content h3 {
        font-size: 30px;
    }
    
    .casestudies-page-featured-content {
        padding: 40px;
    }
    
    .casestudies-page-featured-stat-number {
        font-size: 30px;
    }
    
    .casestudies-page-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .casestudies-page-hero {
        min-height: 60vh;
    }
    
    .casestudies-page-hero-content {
        padding: 140px 5% 80px;
    }
    
    .casestudies-page-hero h1 {
        font-size: 36px;
    }
    
    .casestudies-page-hero-description {
        font-size: 16px;
    }
    
    .casestudies-page-hero-btn {
        padding: 16px 28px;
        font-size: 15px;
    }
    
    .casestudies-page-intro,
    .casestudies-page-featured,
    .casestudies-page-all,
    .casestudies-page-clients {
        padding: 60px 5%;
    }
    
    .casestudies-page-intro h2,
    .casestudies-page-section-header h2 {
        font-size: 32px;
    }
    
    .casestudies-page-intro-text,
    .casestudies-page-section-subheading {
        font-size: 16px;
    }
    
    .casestudies-page-stats {
        padding: 60px 5%;
    }
    
    .casestudies-page-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .casestudies-page-stat-item {
        padding: 25px 15px;
    }
    
    .casestudies-page-stat-value {
        font-size: 36px;
    }
    
    .casestudies-page-stat-suffix {
        font-size: 24px;
    }
    
    .casestudies-page-stat-label {
        font-size: 14px;
    }
    
    .casestudies-page-featured-grid {
        gap: 40px;
    }
    
    .casestudies-page-featured-image {
        min-height: 280px;
    }
    
    .casestudies-page-featured-content {
        padding: 30px;
        text-align: center;
    }
    
    .casestudies-page-featured-content h3 {
        font-size: 26px;
    }
    
    .casestudies-page-featured-content p {
        font-size: 16px;
    }
    
    .casestudies-page-featured-stats {
        gap: 20px;
    }
    
    .casestudies-page-featured-stat-number {
        font-size: 26px;
    }
    
    .casestudies-page-featured-stat-label {
        font-size: 13px;
    }
    
    .casestudies-page-featured-link {
        font-size: 16px;
        justify-content: center;
    }
    
    .casestudies-page-all-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .casestudies-page-all-image {
        height: 250px;
    }
    
    .casestudies-page-all-content {
        padding: 25px;
        justify-items: center;
        text-align: center;
    }
    
    .casestudies-page-all-content h3 {
        font-size: 22px;
    }
    
    .casestudies-page-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .casestudies-page-client-logo {
        height: 100px;
        padding: 20px;
    }
    
    .casestudies-page-client-logo img {
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .casestudies-page-hero h1 {
        font-size: 30px;
    }
    
.casestudies-page-featured-card {
  gap: 0px;
}

    .casestudies-page-intro h2,
    .casestudies-page-section-header h2 {
        font-size: 28px;
    }
    
    .casestudies-page-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .casestudies-page-stat-value {
        font-size: 42px;
    }
    
    .casestudies-page-featured-content h3 {
        font-size: 24px;
    }
    
    .casestudies-page-featured-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .casestudies-page-clients-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .casestudies-page-client-logo {
        height: 80px;
        padding: 15px;
        border-radius: 10px;
    }
    
    .casestudies-page-client-logo img {
        max-height: 35px;
    }
}

/* ================================================
   DIGITAL STRATEGY PAGE STYLES
   All classes prefixed with ds-page- for independent styling
   Section backgrounds alternate: #f8f8f8 / #ffffff
   ================================================ */

/* DS Hero - Dark */
.ds-page-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1e;
}

.ds-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ds-page-hero-video,
.ds-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.ds-page-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 180px 5% 120px;
}

.ds-page-hero-text {
    max-width: 1000px;
}

.ds-page-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.ds-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.ds-page-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.ds-page-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* DS Stats - #f8f8f8 */
.ds-page-stats {
    background: #f8f8f8;
    padding: 80px 40px;
}

.ds-page-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.ds-page-stat-item {
    text-align: center;
}

.ds-page-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #e65616;
    margin-bottom: 10px;
}

.ds-page-stat-label {
    font-size: 16px;
    color: #666;
}

/* DS Info Sections Base */
.ds-page-info {
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
}

.ds-page-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ds-page-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.ds-page-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ds-page-info-reversed {
    direction: rtl;
}

.ds-page-info-reversed > * {
    direction: ltr;
}

.ds-page-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.ds-page-info-text p {
    margin-bottom: 20px;
}

.ds-page-info-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.ds-page-info-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-page-info-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: #ccc;
}

/* DS Info 1 - #ffffff */
.ds-page-info-1 {
    background: #ffffff;
}

/* DS Long CTA Base */
.ds-page-longcta {
    padding: 120px 40px;
}

.ds-page-longcta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ds-page-longcta-content {
    text-align: center;
}

.ds-page-longcta-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.ds-page-longcta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ds-page-longcta-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ds-page-longcta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    text-align: left;
}

.ds-page-longcta-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ds-page-longcta-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ds-page-longcta-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.ds-page-longcta-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 5px;
}

.ds-page-longcta-feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.ds-page-longcta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ds-page-longcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ds-page-longcta-btn-primary {
    background: #e65616;
    color: #fff;
}

.ds-page-longcta-btn-primary:hover {
    background: #d14a0e;
    transform: translateY(-2px);
}

.ds-page-longcta-btn-primary svg {
    width: 18px;
    height: 18px;
}

.ds-page-longcta-btn-secondary {
    background: #1a1a1e;
    color: #fff;
}

.ds-page-longcta-btn-secondary:hover {
    background: #333;
}

.ds-page-longcta-btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* DS Long CTA 1 - #f8f8f8 */
.ds-page-longcta-1 {
    background: #f8f8f8;
}

/* DS Services (Rectangles) - #ffffff */
.ds-page-services {
    background: #ffffff;
    padding: 120px 40px;
}

.ds-page-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ds-page-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.ds-page-services-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.ds-page-services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.ds-page-services-header p {
    font-size: 18px;
    color: #666;
}

.ds-page-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ds-page-service-card {
  display: grid;
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.ds-page-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ds-page-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ds-page-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.ds-page-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 15px;
}

.ds-page-service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* DS Info 2 - #f8f8f8 */
.ds-page-info-2 {
    background: #f8f8f8;
}


/* DS Long CTA 2 - #ffffff */
.ds-page-longcta-2 {
    background: #ffffff;
}

/* DS Process - #f8f8f8 */
.ds-page-process {
    background: #f8f8f8;
    padding: 120px 40px;
}

.ds-page-process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.ds-page-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.ds-page-process-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.ds-page-process-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.ds-page-process-header p {
    font-size: 18px;
    color: #666;
}

.ds-page-process-timeline {
    position: relative;
}

.ds-page-process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.ds-page-process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.ds-page-process-step:last-child {
    margin-bottom: 0;
}

.ds-page-process-number {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #e65616;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #e65616;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.ds-page-process-content {
    padding-top: 15px;
}

.ds-page-process-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.ds-page-process-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* DS Info 3 - #ffffff */
.ds-page-info-3 {
    background: #ffffff;
}


/* DS Long CTA 3 - #f8f8f8 */
.ds-page-longcta-3 {
    background: #f8f8f8;
}

/* DS Results - #ffffff */
.ds-page-results {
    background: #ffffff;
    padding: 120px 40px;
}

.ds-page-results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ds-page-results-header {
    text-align: center;
    margin-bottom: 60px;
}

.ds-page-results-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.ds-page-results-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.ds-page-results-header p {
    font-size: 18px;
    color: #666;
}

.ds-page-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ds-page-result-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ds-page-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ds-page-result-image {
    height: 200px;
    overflow: hidden;
}

.ds-page-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-page-result-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-page-result-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.ds-page-result-content {
    padding: 30px;
}

.ds-page-result-industry {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 10px;
}

.ds-page-result-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.ds-page-result-content > p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.ds-page-result-metrics {
    display: flex;
    gap: 30px;
}

.ds-page-result-metric {
    text-align: center;
}

.ds-page-result-metric-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #e65616;
}

.ds-page-result-metric-label {
    font-size: 13px;
    color: #888;
}

/* DS FAQ - #f8f8f8 */
.ds-page-faq {
    background: #f8f8f8;
    padding: 120px 40px;
}

.ds-page-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.ds-page-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.ds-page-faq-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.ds-page-faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
}

.ds-page-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ds-page-faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ds-page-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ds-page-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
}

.ds-page-faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.ds-page-faq-item.active .ds-page-faq-question svg {
    transform: rotate(180deg);
}

.ds-page-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.ds-page-faq-item.active .ds-page-faq-answer {
    max-height: 300px;
}

.ds-page-faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* ================================================
   DIGITAL STRATEGY PAGE RESPONSIVE STYLES
   ================================================ */

@media (max-width: 1200px) {
    .ds-page-hero h1 {
        font-size: 56px;
    }
    
    .ds-page-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ds-page-longcta-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ds-page-results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .ds-page-hero {
        min-height: 70vh;
    }
    
    .ds-page-hero h1 {
        font-size: 48px;
    }
    
    .ds-page-hero-description {
        font-size: 18px;
    }
    
    .ds-page-stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ds-page-stat-number {
        font-size: 40px;
    }
    
    .ds-page-info {
        padding: 100px 30px;
    }
    
    .ds-page-info-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ds-page-info-reversed {
        direction: ltr;
    }
    
    .ds-page-info-heading {
        font-size: clamp(40px, 5vw, 60px);
    }
    
    .ds-page-longcta {
        padding: 80px 30px;
    }
    
    .ds-page-longcta-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .ds-page-services {
        padding: 80px 30px;
    }
    
    .ds-page-process {
        padding: 80px 30px;
    }
    
    .ds-page-process-timeline::before {
        left: 30px;
    }
    
    .ds-page-process-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
    
    .ds-page-results {
        padding: 80px 30px;
    }
    
    .ds-page-results-grid {
        grid-template-columns: 1fr;
    }
    
    .ds-page-faq {
        padding: 80px 30px;
    }
    
    /* Hide decorative rectangles on tablet */
    .ds-page-info-1::after,
    .ds-page-info-1::before,
    .ds-page-info-2::after,
    .ds-page-info-2::before,
    .ds-page-info-3::after,
    .ds-page-info-3::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .ds-page-hero {
        min-height: 60vh;
    }
    
    .ds-page-hero-content {
        padding: 140px 5% 80px;
    }
    
    .ds-page-hero h1 {
        font-size: 36px;
    }
    
    .ds-page-hero-description {
        font-size: 16px;
    }
    
    .ds-page-stats {
        padding: 60px 20px;
    }
    
    .ds-page-stats-container {
        gap: 30px;
    }
    
    .ds-page-stat-number {
        font-size: 36px;
    }
    
    .ds-page-stat-label {
        font-size: 14px;
    }
    
    .ds-page-info {
        padding: 80px 20px;
    }
    
    .ds-page-info-heading {
        font-size: clamp(32px, 8vw, 48px);
        margin-bottom: 40px;
    }
    
    .ds-page-info-content {
        gap: 40px;
    }
    
    .ds-page-info-text {
        font-size: 16px;
    }
    
    .ds-page-longcta {
        padding: 60px 20px;
    }
    
    .ds-page-longcta-heading {
        font-size: clamp(28px, 6vw, 40px);
    }
    
    .ds-page-longcta-text {
        font-size: 16px;
    }
    
    .ds-page-longcta-feature {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .ds-page-longcta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ds-page-longcta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .ds-page-services {
        padding: 60px 20px;
    }
    
    .ds-page-services-grid {
        grid-template-columns: 1fr;
    }
    
    .ds-page-services-header h2 {
        font-size: clamp(28px, 6vw, 40px);
    }
    
    .ds-page-service-card {
        padding: 30px 25px;
    }
    
    .ds-page-process {
        padding: 60px 20px;
    }
    
    .ds-page-process-header h2 {
        font-size: clamp(28px, 6vw, 40px);
    }
    
    .ds-page-process-step {
        gap: 20px;
    }
    
    .ds-page-process-timeline::before {
        left: 25px;
    }
    
    .ds-page-process-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
    
    .ds-page-process-content h3 {
        font-size: 18px;
    }
    
    .ds-page-process-content p {
        font-size: 15px;
    }
    
    .ds-page-results {
        padding: 60px 20px;
    }
    
    .ds-page-results-header h2 {
        font-size: clamp(28px, 6vw, 40px);
    }
    
    .ds-page-result-content {
        padding: 25px;
    }
    
    .ds-page-result-content h3 {
        font-size: 20px;
    }
    
    .ds-page-result-metrics {
        gap: 20px;
    }
    
    .ds-page-result-metric-value {
        font-size: 24px;
    }
    
    .ds-page-faq {
        padding: 60px 20px;
    }
    
    .ds-page-faq-header h2 {
        font-size: clamp(28px, 6vw, 40px);
    }
    
    .ds-page-faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .ds-page-faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ds-page-hero h1 {
        font-size: 30px;
    }
    
    .ds-page-hero-label {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .ds-page-stats-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .ds-page-stat-number {
        font-size: 32px;
    }
    
    .ds-page-info-heading {
        font-size: 28px;
    }
    
    .ds-page-longcta-heading {
        font-size: 26px;
    }
    
    .ds-page-services-header h2,
    .ds-page-process-header h2,
    .ds-page-results-header h2,
    .ds-page-faq-header h2 {
        font-size: 26px;
    }
    
    .ds-page-process-step {
        flex-direction: column;
        gap: 15px;
    }
    
    .ds-page-process-timeline::before {
        display: none;
    }
    
    .ds-page-process-number {
        width: 60px;
        height: 60px;
    }
    
    .ds-page-result-image {
        height: 180px;
    }
    
    .ds-page-result-metrics {
        flex-direction: column;
        gap: 15px;
    }
}
/* ================================================
   AUTOMATION PAGE STYLES - All classes prefixed with auto-page-
   Background pattern: #f8f8f8 → #ffffff alternating from stats
   ================================================ */

/* Automation Hero */
.auto-page-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1e;
}

.auto-page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.auto-page-hero-video,
.auto-page-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auto-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 30, 0.85) 0%, rgba(26, 26, 30, 0.6) 100%);
}

.auto-page-hero-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 180px 5% 120px;
}

.auto-page-hero-text {
    max-width: 1000px;
}

.auto-page-hero-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #e65616;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.auto-page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 30px;
}

.auto-page-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

.auto-page-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Automation Stats - #f8f8f8 */
.auto-page-stats {
    background: #f8f8f8;
    padding: 80px 40px;
}

.auto-page-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.auto-page-stat-item {
    text-align: center;
}

.auto-page-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #e65616;
    margin-bottom: 10px;
}

.auto-page-stat-label {
    font-size: 16px;
    color: #666;
}

/* Automation Info Sections Base */
.auto-page-info {
    padding: 140px 40px;
    position: relative;
    overflow: hidden;
}

.auto-page-info-container {
    max-width: 1200px;
    margin: 0 auto;
}

.auto-page-info-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 60px;
    text-align: center;
}

.auto-page-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.auto-page-info-reversed {
    direction: rtl;
}

.auto-page-info-reversed > * {
    direction: ltr;
}

.auto-page-info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.auto-page-info-text p {
    margin-bottom: 20px;
}

.auto-page-info-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.auto-page-info-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auto-page-info-placeholder svg {
    width: 80px;
    height: 80px;
    stroke: #ccc;
}

/* Automation Info 1 - #ffffff */
.auto-page-info-1 {
    background: #ffffff;
}


/* Automation Long CTA Base */
.auto-page-longcta {
    padding: 100px 40px;
}

.auto-page-longcta-container {
    max-width: 1000px;
    margin: 0 auto;
}

.auto-page-longcta-content {
    text-align: center;
}

.auto-page-longcta-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.auto-page-longcta-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.auto-page-longcta-text {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto 40px;
}

.auto-page-longcta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.auto-page-longcta-feature {
  display: grid;
    text-align: left;
    padding: 30px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.auto-page-longcta-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.auto-page-longcta-feature-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.auto-page-longcta-feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 8px;
}

.auto-page-longcta-feature-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

.auto-page-longcta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.auto-page-longcta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auto-page-longcta-btn-primary {
    background: #e65616;
    color: #fff;
}

.auto-page-longcta-btn-primary:hover {
    background: #d14a0f;
    transform: translateY(-2px);
}

.auto-page-longcta-btn-primary svg {
    width: 20px;
    height: 20px;
}

.auto-page-longcta-btn-secondary {
    background: transparent;
    color: #1a1a1e;
    border: 2px solid #ddd;
}

.auto-page-longcta-btn-secondary:hover {
    border-color: #e65616;
    color: #e65616;
}

.auto-page-longcta-btn-secondary svg {
    width: 18px;
    height: 18px;
}

/* Automation Long CTA 1 - #f8f8f8 */
.auto-page-longcta-1 {
    background: #f8f8f8;
}

/* Automation Services - #ffffff */
.auto-page-services {
    background: #ffffff;
    padding: 120px 40px;
}

.auto-page-services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.auto-page-services-header {
    text-align: center;
    margin-bottom: 60px;
}

.auto-page-services-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.auto-page-services-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.auto-page-services-header p {
    font-size: 18px;
    color: #666;
}

.auto-page-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.auto-page-service-card {
  display: grid;
    background: #f8f8f8;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.auto-page-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.auto-page-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.auto-page-service-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.auto-page-service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 15px;
}

.auto-page-service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

/* Automation Info 2 - #f8f8f8 */
.auto-page-info-2 {
    background: #f8f8f8;
}


/* Automation Long CTA 2 - #ffffff */
.auto-page-longcta-2 {
    background: #ffffff;
}

/* Automation Process - #f8f8f8 */
.auto-page-process {
    background: #f8f8f8;
    padding: 120px 40px;
}

.auto-page-process-container {
    max-width: 1000px;
    margin: 0 auto;
}

.auto-page-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.auto-page-process-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.auto-page-process-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.auto-page-process-header p {
    font-size: 18px;
    color: #666;
}

.auto-page-process-timeline {
    position: relative;
}

.auto-page-process-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.auto-page-process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.auto-page-process-step:last-child {
    margin-bottom: 0;
}

.auto-page-process-number {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #e65616;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #e65616;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.auto-page-process-content {
    padding-top: 15px;
}

.auto-page-process-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.auto-page-process-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* Automation Info 3 - #ffffff */
.auto-page-info-3 {
    background: #ffffff;
}

/* Automation Long CTA 3 - #f8f8f8 */
.auto-page-longcta-3 {
    background: #f8f8f8;
}

/* Automation Results - #ffffff */
.auto-page-results {
    background: #ffffff;
    padding: 120px 40px;
}

.auto-page-results-container {
    max-width: 1200px;
    margin: 0 auto;
}

.auto-page-results-header {
    text-align: center;
    margin-bottom: 60px;
}

.auto-page-results-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.auto-page-results-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 20px;
}

.auto-page-results-header p {
    font-size: 18px;
    color: #666;
}

.auto-page-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.auto-page-result-card {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.auto-page-result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.auto-page-result-image {
    height: 200px;
    overflow: hidden;
}

.auto-page-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auto-page-result-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e65616 0%, #ff7a3d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.auto-page-result-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
}

.auto-page-result-content {
    padding: 30px;
}

.auto-page-result-industry {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 10px;
}

.auto-page-result-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1e;
    margin-bottom: 10px;
}

.auto-page-result-content > p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.auto-page-result-metrics {
    display: flex;
    gap: 30px;
}

.auto-page-result-metric {
    text-align: center;
}

.auto-page-result-metric-value {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #e65616;
}

.auto-page-result-metric-label {
    font-size: 13px;
    color: #888;
}

/* Automation FAQ - #f8f8f8 */
.auto-page-faq {
    background: #f8f8f8;
    padding: 120px 40px;
}

.auto-page-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.auto-page-faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.auto-page-faq-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e65616;
    margin-bottom: 20px;
}

.auto-page-faq-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
}

.auto-page-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auto-page-faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.auto-page-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.auto-page-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1e;
}

.auto-page-faq-question svg {
    width: 20px;
    height: 20px;
    stroke: #666;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.auto-page-faq-item.active .auto-page-faq-question svg {
    transform: rotate(180deg);
}

.auto-page-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.auto-page-faq-item.active .auto-page-faq-answer {
    max-height: 300px;
}

.auto-page-faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* ================================================
   AUTOMATION PAGE RESPONSIVE STYLES
   ================================================ */

@media (max-width: 1024px) {
    .auto-page-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .auto-page-info {
        padding: 80px 20px;
    }
    
    .auto-page-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .auto-page-info-reversed {
        direction: ltr;
    }
    
    .auto-page-info-heading {
        font-size: 36px;
        margin-bottom: 40px;
    }
    
    .auto-page-results {
        padding: 80px 20px;
    }
    
    .auto-page-results-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Hide decorative rectangles on tablet */
    .auto-page-info-1::after,
    .auto-page-info-1::before,
    .auto-page-info-2::after,
    .auto-page-info-2::before,
    .auto-page-info-3::after,
    .auto-page-info-3::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .auto-page-hero {
        min-height: auto;
    }

    .auto-page-info-container {
        text-align: center;
    }

    .auto-page-longcta-feature {
        justify-items: center;
        text-align: center;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    .auto-page-result-content {
        justify-items: center;
        text-align: center;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    .auto-page-service-card {
        justify-items: center;
        text-align: center;
        align-items: center;
        align-content: center;
        justify-content: center;
    }

    .auto-page-hero-content {
        padding: 140px 20px 80px;
    }
    
    .auto-page-hero h1 {
        font-size: 42px;
    }
    
    .auto-page-hero-description {
        font-size: 18px;
    }
    
    .auto-page-stats {
        padding: 60px 20px;
    }
    
    .auto-page-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .auto-page-stat-number {
        font-size: 36px;
    }
    
    .auto-page-longcta {
        padding: 60px 20px;
    }
    
    .auto-page-longcta-features {
        grid-template-columns: 1fr;
    }
    
    .auto-page-longcta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .auto-page-services {
        padding: 80px 20px;
    }
    
    .auto-page-process {
        padding: 80px 20px;
    }
    
    .auto-page-process-timeline::before {
        left: 30px;
    }
    
    .auto-page-process-number {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
    
    .auto-page-process-step {
        gap: 25px;
    }
    
    .auto-page-faq {
        padding: 80px 20px;
    }
    
    .auto-page-faq-question {
        font-size: 16px;
        padding: 20px;
    }
    
    .auto-page-faq-answer p {
        padding: 0 20px 20px;
    }
    
    .auto-page-info-1::before,
    .auto-page-info-1::after,
    .auto-page-info-2::before,
    .auto-page-info-2::after,
    .auto-page-info-3::before,
    .auto-page-info-3::after {
        display: none;
    }
}

@media (max-width: 600px) {
    .auto-page-services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .auto-page-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .auto-page-longcta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .auto-page-result-metrics {
        flex-direction: column;
        gap: 15px;
    }
}
/* ========================================
   TESTIMONIALS PAGE STYLES
   All classes prefixed with testimonials-page-
   ======================================== */

/* ========================================
   HERO SECTION
   ======================================== */
.testimonials-page-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.testimonials-page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.testimonials-page-hero-video,
.testimonials-page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-page-hero-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.testimonials-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%); /* Default fallback */
}

.testimonials-page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-page-hero-text {
  color: #ffffff;
}

.testimonials-page-hero-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 25px;
  padding: 8px 20px;
  border: 1px solid rgba(230, 86, 22, 0.4);
  border-radius: 30px;
  background: rgba(230, 86, 22, 0.1);
}

.testimonials-page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #ffffff;
}

.testimonials-page-hero h1 .highlight-text-italic {
  font-style: italic;
  background: linear-gradient(135deg, #e65616, #ff8a50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-page-hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-page-hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.testimonials-page-rating-stars {
  display: flex;
  gap: 3px;
}

.testimonials-page-rating-stars .star {
  color: #fbbf24;
  font-size: 1.5rem;
}

.testimonials-page-rating-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.testimonials-page-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 35px;
  background: #e65616;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.testimonials-page-hero-cta:hover {
  background: #d14a0e;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 86, 22, 0.4);
}

.testimonials-page-hero-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.testimonials-page-hero-cta:hover svg {
  transform: translateY(3px);
}

/* Floating Cards in Hero */
.testimonials-page-hero-floating {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.testimonials-page-floating-card {
  position: absolute;
  background: #000000;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  max-width: 200px;
  color: white;
}

.testimonials-page-floating-card-1 {
  top: 20%;
  left: 8%;
}

.testimonials-page-floating-card-2 {
  top: 35%;
  right: 8%;
}

.testimonials-page-floating-card-3 {
  bottom: 25%;
  left: 12%;
}

.testimonials-page-floating-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.testimonials-page-floating-card p {
  font-size: 0.85rem;
  color: #ffffff;
  font-weight: 500;
  margin: 0;
  font-style: italic;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes float-2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-25px) rotate(-2deg); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
}

.animate-float-1 {
  animation: float-1 6s ease-in-out infinite;
}

.animate-float-2 {
  animation: float-2 7s ease-in-out infinite;
  animation-delay: 1s;
}

.animate-float-3 {
  animation: float-3 5s ease-in-out infinite;
  animation-delay: 2s;
}

@media (max-width: 992px) {
  .testimonials-page-hero-floating {
    display: none;
  }
}


/* ========================================
   FEATURED TESTIMONIAL SECTION
   ======================================== */
.testimonials-page-featured {
  padding: 100px 20px;
  background: #ffffff;
}

.testimonials-page-featured-container {
  max-width: 1300px;
  margin: 0 auto;
}

.testimonials-page-featured-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.testimonials-page-featured-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.testimonials-page-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-page-featured-logo {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonials-page-featured-logo img {
  height: 40px;
  width: auto;
}

.testimonials-page-featured-text {
  position: relative;
}

.testimonials-page-featured-quote-mark {
  margin-bottom: 25px;
}

.testimonials-page-featured-quote-mark svg {
  width: 60px;
  height: 60px;
  fill: #e65616;
  opacity: 0.3;
}

.testimonials-page-featured-quote {
  font-size: 1.5rem;
  line-height: 1.7;
  color: #2d2d2d;
  font-style: italic;
  margin: 0 0 40px;
  border: none;
  padding: 0;
}

.testimonials-page-featured-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonials-page-featured-author-info h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 5px;
}

.testimonials-page-featured-author-info p {
  font-size: 1rem;
  color: #666666;
  margin: 0;
}

.testimonials-page-featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: transparent;
  border: 2px solid #e65616;
  color: #e65616;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.testimonials-page-featured-cta:hover {
  background: #e65616;
  color: #ffffff;
  transform: translateX(5px);
}

.testimonials-page-featured-cta svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.testimonials-page-featured-cta:hover svg {
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .testimonials-page-featured-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .testimonials-page-featured-quote {
    font-size: 1.25rem;
    text-align: center;
  }

  .testimonials-page-featured-author {
    text-align: center;
    justify-content: center;
  }
}


/* ========================================
   STATS SECTION
   ======================================== */
.testimonials-page-stats {
  padding: 80px 20px;
}

.testimonials-page-stats-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-page-stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-page-stats-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.testimonials-page-stats-heading .black-text {
  color: #1a1a1a;
}

.testimonials-page-stats-heading .highlight-text-italic {
  font-style: italic;
  color: #e65616;
}

.testimonials-page-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.testimonials-page-stat-item {
  text-align: center;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}

.testimonials-page-stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.testimonials-page-stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e65616;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonials-page-stat-label {
  font-size: 1rem;
  color: #666666;
  font-weight: 500;
}

@media (max-width: 992px) {
  .testimonials-page-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonials-page-stats-grid {
    grid-template-columns: 1fr;
  }
  
.testimonials-page-featured-quote-mark {
  text-align: center;
}


  .testimonials-page-stat-number {
    font-size: 2.8rem;
  }
}


/* ========================================
   TESTIMONIALS MASONRY GRID
   ======================================== */
.testimonials-page-grid-section {
  padding: 100px 20px;
  background: #ffffff;
}

.testimonials-page-grid-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-page-grid-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-page-grid-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

.testimonials-page-grid-heading .black-text {
  color: #1a1a1a;
}

.testimonials-page-grid-heading .highlight-text-italic {
  font-style: italic;
  color: #e65616;
}

.testimonials-page-grid-intro {
  font-size: 1.1rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-page-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonials-page-masonry-card {
  perspective: 1000px;
}

.testimonials-page-masonry-card-inner {
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.testimonials-page-masonry-front {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-page-masonry-card:hover .testimonials-page-masonry-front {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(230, 86, 22, 0.2);
}

.testimonials-page-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.testimonials-page-card-logo {
  height: 30px;
  width: auto;
  opacity: 0.7;
}

.testimonials-page-card-rating {
  display: flex;
  gap: 2px;
}

.testimonials-page-card-rating .star {
  color: #fbbf24;
  font-size: 1rem;
}

.testimonials-page-card-quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #444444;
  margin: 0 0 25px;
  border: none;
  padding: 0;
}

.testimonials-page-card-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonials-page-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-page-author-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
}

.testimonials-page-author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 3px;
}

.testimonials-page-author-info p {
  font-size: 0.85rem;
  color: #888888;
  margin: 0;
}

.testimonials-page-grid-cta {
  text-align: center;
  margin-top: 60px;
}

.testimonials-page-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonials-page-google-btn:hover {
  border-color: #4285f4;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.2);
  transform: translateY(-3px);
}

.testimonials-page-google-btn svg {
  width: 24px;
  height: 24px;
}

.testimonials-page-google-btn .arrow {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.testimonials-page-google-btn:hover .arrow {
  transform: translateX(5px);
}

@media (max-width: 1100px) {
  .testimonials-page-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .testimonials-page-masonry {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   CLIENT LOGOS SECTION
   ======================================== */
.testimonials-page-logos {
  padding: 80px 20px;
  overflow: hidden;
}

.testimonials-page-logos-container {
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-page-logos-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-page-logos-heading {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  margin: 0;
}

.testimonials-page-logos-heading .black-text {
  color: #1a1a1a;
}

.testimonials-page-logos-heading .highlight-text-italic {
  font-style: italic;
  color: #e65616;
  margin-left: 10px;
}

.testimonials-page-logos-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-page-logos-track {
  display: flex;
  gap: 80px;
  animation: scroll-logos 30s linear infinite;
}

.testimonials-page-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-page-logo-item img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(0.3);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.testimonials-page-logo-item:hover img {
  filter: none;
  opacity: 1;
}

@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ========================================
   VIDEO TESTIMONIALS SECTION
   ======================================== */
.testimonials-page-video-section {
  padding: 100px 20px;
  background: #ffffff;
}

.testimonials-page-video-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-page-video-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-page-video-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px;
}

.testimonials-page-video-heading .black-text {
  color: #1a1a1a;
}

.testimonials-page-video-heading .highlight-text-italic {
  font-style: italic;
  color: #e65616;
}

.testimonials-page-video-intro {
  font-size: 1.1rem;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-page-video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonials-page-video-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.testimonials-page-video-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.testimonials-page-video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}

.testimonials-page-video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonials-page-video-card:hover .testimonials-page-video-thumbnail img {
  transform: scale(1.05);
}

.testimonials-page-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.testimonials-page-video-card:hover .testimonials-page-video-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.testimonials-page-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #e65616;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.4);
}

.testimonials-page-video-card:hover .testimonials-page-video-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonials-page-video-play svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  margin-left: 4px;
}

.testimonials-page-video-info {
  padding: 25px;
}

.testimonials-page-video-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 5px;
}

.testimonials-page-video-info p {
  font-size: 0.9rem;
  color: #888888;
  margin: 0;
}

@media (max-width: 992px) {
  .testimonials-page-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials-page-video-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================
   VIDEO MODAL
   ======================================== */
.testimonials-page-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.testimonials-page-video-modal.active {
  opacity: 1;
  visibility: visible;
}

.testimonials-page-video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
}

.testimonials-page-video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.testimonials-page-video-modal-close:hover {
  background: #e65616;
  border-color: #e65616;
}

.testimonials-page-video-modal-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.testimonials-page-video-modal-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ========================================
   CAROUSEL SECTION
   ======================================== */
.testimonials-page-carousel-section {
  padding: 100px 20px;
}

.testimonials-page-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-page-carousel-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-page-carousel-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 0;
}

.testimonials-page-carousel-heading .black-text {
  color: #1a1a1a;
}

.testimonials-page-carousel-heading .highlight-text-italic {
  font-style: italic;
  color: #e65616;
  margin-left: 10px;
}

.testimonials-page-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.testimonials-page-carousel-nav {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonials-page-carousel-nav:hover {
  background: #e65616;
  border-color: #e65616;
  color: #ffffff;
  transform: scale(1.1);
}

.testimonials-page-carousel-nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.testimonials-page-carousel-track-container {
  overflow: hidden;
  flex: 1;
}

.testimonials-page-carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonials-page-carousel-slide {
  flex: 0 0 100%;
  padding: 0 10px;
}

.testimonials-page-carousel-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonials-page-carousel-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.testimonials-page-carousel-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials-page-carousel-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
}

.testimonials-page-carousel-author {
  flex: 1;
}

.testimonials-page-carousel-author h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 5px;
}

.testimonials-page-carousel-author p {
  font-size: 0.95rem;
  color: #888888;
  margin: 0;
}

.testimonials-page-carousel-rating {
  display: flex;
  gap: 3px;
}

.testimonials-page-carousel-rating .star {
  color: #fbbf24;
  font-size: 1.2rem;
}

.testimonials-page-carousel-quote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444444;
  margin: 0;
  border: none;
  padding: 0;
}

.testimonials-page-carousel-logo {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonials-page-carousel-logo img {
  height: 35px;
  width: auto;
  opacity: 0.7;
}

.testimonials-page-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.testimonials-page-carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-page-carousel-dot.active {
  background: #e65616;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonials-page-carousel-wrapper {
    flex-direction: column;
  }
  
  .testimonials-page-carousel-nav {
    display: none;
  }
  
  .testimonials-page-carousel-card {
    padding: 30px;
  }
}


/* ========================================
   FULL WIDTH QUOTE SECTION
   ======================================== */
.testimonials-page-full-quote {
  position: relative;
  padding: 120px 20px;
  background: #1a1a2e;
  overflow: hidden;
}

.testimonials-page-full-quote-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f8f8f8;
}

.testimonials-page-full-quote-pattern {
  width: 100%;
  height: 100%;
  }

.testimonials-page-full-quote-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-page-full-quote-content {
  text-align: center;
}

.testimonials-page-full-quote-mark {
  margin-bottom: 30px;
}

.testimonials-page-full-quote-mark svg {
  width: 70px;
  height: 70px;
  fill: #e65616;
  opacity: 0.5;
}

.testimonials-page-full-quote blockquote {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.6;
  color: #000000;
  font-style: italic;
  margin: 0 0 40px;
  padding: 0;
  border: none;
}

.testimonials-page-full-quote-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.testimonials-page-full-quote-stars {
  color: #fbbf24;
  font-size: 1.3rem;
  letter-spacing: 3px;
}

.testimonials-page-full-quote-author h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
}

.testimonials-page-full-quote-author p {
  font-size: 1rem;
  color: #000000;
  margin: 0;
}


/* ========================================
   CTA SECTION
   ======================================== */
.testimonials-page-cta {
  padding: 100px 20px;
}

.testimonials-page-cta-container {
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials-page-cta-content {
  text-align: center;
}

.testimonials-page-cta-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 20px;
}

.testimonials-page-cta-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 25px;
}

.testimonials-page-cta-heading .black-text {
  color: #1a1a1a;
}

.testimonials-page-cta-heading .highlight-text-italic {
  font-style: italic;
  color: #e65616;
}

.testimonials-page-cta-text {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 50px;
}

.testimonials-page-cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.testimonials-page-cta-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-align: left;
}

.testimonials-page-cta-feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e65616, #ff8a50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-page-cta-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
}

.testimonials-page-cta-feature-text h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 5px;
}

.testimonials-page-cta-feature-text p {
  font-size: 0.95rem;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.testimonials-page-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonials-page-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.testimonials-page-cta-btn-primary {
  background: #e65616;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.3);
}

.testimonials-page-cta-btn-primary:hover {
  background: #d14a0e;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 86, 22, 0.4);
}

.testimonials-page-cta-btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.testimonials-page-cta-btn-primary:hover svg {
  transform: translateX(5px);
}

.testimonials-page-cta-btn-secondary {
  background: #ffffff;
  color: #1a1a1a;
  border: 2px solid #e0e0e0;
}

.testimonials-page-cta-btn-secondary:hover {
  border-color: #e65616;
  color: #e65616;
  transform: translateY(-3px);
}

.testimonials-page-cta-btn-secondary svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 992px) {
  .testimonials-page-cta-features {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 400px;
    margin: 0 auto 50px;
  }
  
  .testimonials-page-cta-feature {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .testimonials-page-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .testimonials-page-cta-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ========================================
   ANIMATIONS
   ======================================== */
.testimonials-page-hero .animate-fade-in,
.testimonials-page-hero .animate-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: testimonials-fade-up 0.8s ease forwards;
}

.testimonials-page-hero .animate-slide-up {
  animation-delay: 0.3s;
}

@keyframes testimonials-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll animations using intersection observer */
.testimonials-page-featured .animate-slide-right,
.testimonials-page-featured .animate-slide-left,
.testimonials-page-stats .animate-fade-in,
.testimonials-page-stats .animate-scale-in,
.testimonials-page-grid-section .animate-fade-in,
.testimonials-page-logos .animate-fade-in,
.testimonials-page-video-section .animate-fade-in,
.testimonials-page-video-section .animate-scale-in,
.testimonials-page-carousel-section .animate-fade-in,
.testimonials-page-full-quote .animate-fade-in,
.testimonials-page-cta .animate-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonials-page-featured .animate-slide-right.is-visible,
.testimonials-page-featured .animate-slide-left.is-visible,
.testimonials-page-stats .animate-fade-in.is-visible,
.testimonials-page-stats .animate-scale-in.is-visible,
.testimonials-page-grid-section .animate-fade-in.is-visible,
.testimonials-page-logos .animate-fade-in.is-visible,
.testimonials-page-video-section .animate-fade-in.is-visible,
.testimonials-page-video-section .animate-scale-in.is-visible,
.testimonials-page-carousel-section .animate-fade-in.is-visible,
.testimonials-page-full-quote .animate-fade-in.is-visible,
.testimonials-page-cta .animate-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Counter animation */
.testimonials-page-counter {
  display: inline-block;
}


/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
  .testimonials-page-hero-content {
    padding: 100px 15px 60px;
  }
  
  .testimonials-page-hero-description {
    font-size: 1rem;
  }
  
  .testimonials-page-featured {
    padding: 60px 15px;
  }
  
  .testimonials-page-stats {
    padding: 60px 15px;
  }
  
  .testimonials-page-grid-section {
    padding: 60px 15px;
  }
  
  .testimonials-page-masonry-front {
    padding: 25px;
  }
  
  .testimonials-page-logos {
    padding: 60px 15px;
  }
  
  .testimonials-page-carousel-section {
    padding: 60px 15px;
  }
  
  .testimonials-page-full-quote {
    padding: 80px 15px;
  }
  
  .testimonials-page-cta {
    padding: 60px 15px;
  }
}

/* ========================================
   CONTACT US PAGE STYLES
   ======================================== */

/* ----------------------------------------
   CONTACT HERO SECTION
   ---------------------------------------- */
.contact-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
}

.contact-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-hero-video,
.contact-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.8) 100%
  );
}

/* Animated floating shapes */
.contact-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.contact-hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(80px);
}

.contact-hero-shape-1 {
  width: 600px;
  height: 600px;
  background: #e65616;
  top: -200px;
  right: -100px;
  animation: contactShapeFloat1 20s ease-in-out infinite;
}

.contact-hero-shape-2 {
  width: 400px;
  height: 400px;
  background: #4f46e5;
  bottom: -100px;
  left: -100px;
  animation: contactShapeFloat2 25s ease-in-out infinite;
}

.contact-hero-shape-3 {
  width: 300px;
  height: 300px;
  background: #06b6d4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: contactShapeFloat3 15s ease-in-out infinite;
}

@keyframes contactShapeFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-50px, 50px) scale(1.1); }
  66% { transform: translate(30px, -30px) scale(0.9); }
}

@keyframes contactShapeFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -40px) scale(1.15); }
}

@keyframes contactShapeFloat3 {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.1; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.15; }
}

.contact-hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 30px 80px;
  text-align: center;
}

.contact-hero-text {
  color: #ffffff;
}

.contact-hero-label {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(230, 86, 22, 0.15);
  border: 1px solid rgba(230, 86, 22, 0.3);
  border-radius: 50px;
  color: #e65616;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.contact-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

.contact-hero-line-1 {
  display: block;
  color: #ffffff;
}

.contact-hero-line-2 {
  display: block;
}

.contact-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.contact-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-hero-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.contact-hero-btn-primary {
  background: #e65616;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(230, 86, 22, 0.4);
}

.contact-hero-btn-primary:hover {
  background: #ff6b2b;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 86, 22, 0.5);
}

.contact-hero-btn-primary:hover svg {
  transform: translateY(3px);
}

.contact-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.contact-hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}

/* Scroll indicator */
.contact-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: contactScrollBounce 2s ease-in-out infinite;
}

.contact-hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  position: relative;
  overflow: hidden;
}

.contact-hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30px;
  background: #e65616;
  animation: contactScrollLine 2s ease-in-out infinite;
}

@keyframes contactScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes contactScrollLine {
  0% { top: -30px; }
  100% { top: 60px; }
}


/* ----------------------------------------
   CONTACT FORM SECTION
   ---------------------------------------- */
.contact-form-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.contact-form-section:nth-of-type(even) {
  background-color: #f8f8f8;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form-info {
  position: sticky;
  top: 120px;
}

.contact-form-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-form-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(230, 86, 22, 0.2);
}

.contact-info-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #e65616, #ff8a50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contact-info-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-info-card-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1e;
  margin-bottom: 5px;
}

.contact-info-card-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.contact-info-card-link {
  font-size: 0.95rem;
  color: #e65616;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-info-card-link:hover {
  color: #ff6b2b;
}

.contact-info-card-whatsapp .contact-info-card-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Social Links */
.contact-social-links {
  display: flex;
  gap: 15px;
}

.contact-social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  color: #666;
  transition: all 0.3s ease;
}

.contact-social-link svg {
  width: 20px;
  height: 20px;
}

.contact-social-link:hover {
  background: #e65616;
  border-color: #e65616;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Contact Form Box */
.contact-form-wrapper {
  position: relative;
  width: 100%;
}

.contact-form-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-form-box::before {
  display: none;
}

.contact-form-box-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
}

.contact-form-box-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e65616, #ff8a50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contact-form-box-icon svg {
  width: 24px;
  height: 24px;
}

.contact-form-box-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1e;
}

/* Form Styles */
.contact-page-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-group-full {
  grid-column: 1 / -1;
}

.contact-form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1e;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
  padding: 16px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1e;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
  outline: none;
  border-color: #e65616;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(230, 86, 22, 0.1);
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
  color: #aaa;
}

.contact-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
  padding-right: 50px;
}

.contact-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #e65616, #ff6b2b);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 15px;
  position: relative;
  overflow: hidden;
}

.contact-form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.contact-form-submit:hover::before {
  left: 100%;
}

.contact-form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.4);
}

.contact-form-submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.contact-form-submit:hover svg {
  transform: translateX(5px) translateY(-5px);
}


/* ----------------------------------------
   CALENDLY BOOKING SECTION
   ---------------------------------------- */
.contact-booking-section {
  padding: 100px 0;
  background-color: #f8f8f8;
}

.contact-booking-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-booking-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-booking-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-booking-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-booking-widget {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.contact-calendly-wrapper {
  border-radius: 16px;
  overflow: visible;
  min-height: 700px;
  width: 100%;
  box-sizing: border-box;
}

.calendly-inline-widget {
  border-radius: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}


/* ----------------------------------------
   INTERACTIVE MAP SECTION
   ---------------------------------------- */
.contact-map-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.contact-map-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-map-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-map-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-map-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 60px !important;
  align-items: stretch !important;
}

.contact-map-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  height: 500px;
  width: 100%;
}

.contact-map-image {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-map-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-map-interactive {
  width: 100%;
  height: 100%;
}

.contact-map-interactive iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s ease;
}

.contact-map-card:hover .contact-map-interactive iframe {
  filter: grayscale(0%) contrast(1);
}

/* Map Info Overlay */
.contact-map-info-overlay {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}

.contact-map-info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  min-width: 280px;
}

.contact-map-info-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-map-info-logo img {
  height: 30px;
  width: auto;
}

.contact-map-info-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1e;
}

.contact-map-info-address {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.contact-map-info-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-map-stars {
  color: #fbbc05;
  font-size: 1rem;
  letter-spacing: 2px;
}

.contact-map-info-rating span {
  font-weight: 700;
  color: #1a1a1e;
}

.contact-map-reviews {
  color: #4285f4;
  text-decoration: none;
  font-size: 0.85rem;
}

.contact-map-reviews:hover {
  text-decoration: underline;
}

.contact-map-directions-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: #4285f4;
  color: #ffffff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-map-directions-btn svg {
  width: 18px;
  height: 18px;
}

.contact-map-directions-btn:hover {
  background: #3367d6;
  transform: translateY(-2px);
}

/* Quick Links Below Map */
.contact-map-quick-links {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 25px !important;
  margin-top: 40px !important;
}

.contact-quick-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  gap: 20px !important;
  padding: 35px 30px !important;
  background: #f8f8f8 !important;
  border-radius: 16px !important;
  text-decoration: none !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.contact-quick-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(230, 86, 22, 0.2);
}

.contact-quick-link-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: linear-gradient(135deg, #e65616, #ff8a50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.contact-quick-link:hover .contact-quick-link-icon {
  transform: scale(1.1);
}

.contact-quick-link-icon svg {
  width: 26px;
  height: 26px;
}

.contact-quick-link-text strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1e;
  margin-bottom: 4px;
}

.contact-quick-link-text span {
  font-size: 0.9rem;
  color: #666;
}


/* ----------------------------------------
   FAQ SECTION
   ---------------------------------------- */
.contact-faq-section {
  padding: 100px 0;
  background-color: #f8f8f8;
}

.contact-faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}

.contact-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-faq-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-faq-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.contact-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-faq-item {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.contact-faq-item:hover {
  border-color: rgba(230, 86, 22, 0.2);
}

.contact-faq-item.active {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}

.contact-faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1e;
  line-height: 1.4;
}

.contact-faq-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  position: relative;
}

.contact-faq-icon span {
  position: absolute;
  background: #e65616;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.contact-faq-icon span:first-child {
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.contact-faq-icon span:last-child {
  width: 3px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.contact-faq-item.active .contact-faq-icon span:last-child {
  transform: translateX(-50%) rotate(90deg);
}

.contact-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.contact-faq-answer-content {
  padding: 0 30px 25px;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}


/* ----------------------------------------
   CTA SECTION
   ---------------------------------------- */
.contact-cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact-cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

/* Background shapes */
.contact-cta-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.contact-cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.contact-cta-shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #e65616, #ff8a50);
  top: -200px;
  right: -150px;
  filter: blur(100px);
  animation: contactCtaShape1 15s ease-in-out infinite;
}

.contact-cta-shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #4f46e5, #818cf8);
  bottom: -150px;
  left: -100px;
  filter: blur(80px);
  animation: contactCtaShape2 20s ease-in-out infinite;
}

.contact-cta-orb {
  position: absolute;
  border-radius: 50%;
  background: #e65616;
  opacity: 0.3;
}

.contact-cta-orb-1 {
  width: 10px;
  height: 10px;
  top: 20%;
  left: 10%;
  animation: contactOrbFloat 8s ease-in-out infinite;
}

.contact-cta-orb-2 {
  width: 6px;
  height: 6px;
  bottom: 30%;
  right: 15%;
  animation: contactOrbFloat 10s ease-in-out infinite reverse;
}

@keyframes contactCtaShape1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.1); }
}

@keyframes contactCtaShape2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -20px) scale(1.15); }
}

@keyframes contactOrbFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
  50% { transform: translateY(-30px) scale(1.5); opacity: 0.6; }
}

.contact-cta-content {
  text-align: center;
  color: #ffffff;
}

.contact-cta-label {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(230, 86, 22, 0.2);
  border: 1px solid rgba(230, 86, 22, 0.4);
  border-radius: 50px;
  color: #e65616;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.contact-cta-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
}

.contact-cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.contact-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.contact-cta-btn-primary {
  background: #e65616;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(230, 86, 22, 0.4);
}

.contact-cta-btn-primary:hover {
  background: #ff6b2b;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(230, 86, 22, 0.5);
}

.contact-cta-btn-primary:hover svg {
  transform: translateX(5px);
}

.contact-cta-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
}


/* ----------------------------------------
   ANIMATIONS
   ---------------------------------------- */
.contact-form-section .animate-slide-left,
.contact-form-section .animate-slide-right,
.contact-booking-section .animate-fade-in,
.contact-booking-section .animate-scale-in,
.contact-map-section .animate-fade-in,
.contact-map-section .animate-scale-in,
.contact-faq-section .animate-fade-in,
.contact-cta-section .animate-fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-form-section .animate-slide-left {
  transform: translateX(-50px);
}

.contact-form-section .animate-slide-right {
  transform: translateX(50px);
}

.contact-form-section .animate-slide-left.is-visible,
.contact-form-section .animate-slide-right.is-visible,
.contact-booking-section .animate-fade-in.is-visible,
.contact-booking-section .animate-scale-in.is-visible,
.contact-map-section .animate-fade-in.is-visible,
.contact-map-section .animate-scale-in.is-visible,
.contact-faq-section .animate-fade-in.is-visible,
.contact-cta-section .animate-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ----------------------------------------
   RESPONSIVE STYLES
   ---------------------------------------- */
@media (max-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-form-info {
    position: relative;
    top: 0;
  }
  
  .contact-map-quick-links {
    grid-template-columns: 1fr!important;
  }
  
  .contact-map-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero-content {
    padding: 100px 20px 60px;
  }
  
  .contact-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-hero-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .contact-hero-scroll {
    display: none;
  }
  
  .contact-form-section,
  .contact-booking-section,
  .contact-map-section,
  .contact-faq-section {
    padding: 60px 0;
  }
  
  .contact-booking-container,
  .contact-map-container,
  .contact-faq-container,
  .contact-cta-container {
    padding: 0 20px;
  }
  
  .contact-form-box {
    padding: 30px 25px;
  }
  
.contact-form-container {
  display: block!important;
      padding: 0 20px;

}

  .contact-form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-map-card {
    height: 800px;
  }
  
  .contact-map-info-overlay {
    position: relative;
    top: 0;
    left: 0;

    z-index: 10;
  }
  
  .contact-map-info-card {
    margin: 20px;
    border-radius: 16px;
  }
  
  .contact-faq-question {
    padding: 20px;
  }
  
  .contact-faq-question span {
    font-size: 1rem;
  }
  
  .contact-faq-answer-content {
    padding: 0 20px 20px;
  }
  
  .contact-cta-section {
    padding: 80px 0;
  }
  
  .contact-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-cta-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Mobile fix for Calendly embed responsiveness */
  .contact-booking-widget {
    padding: 0;
  }

  .contact-calendly-wrapper {
    min-height: 600px;
    border-radius: 0;
  }

  .calendly-inline-widget {
    border-radius: 0;
  }
}

@media (max-width: 480px) {
  .contact-info-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-social-links {
    justify-content: center;
  }
  
  .contact-quick-link {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }
}
/* ========================================
   CSS FIXES - CONTACT PAGE & HEADER
   ======================================== */

/* ----------------------------------------
   FIX: Remove scroll animation - replace with simple text
   ---------------------------------------- */
.contact-hero-scroll {
  display: none !important;
}

.contact-hero-scroll-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ----------------------------------------
   FIX: Remove map card tilt/hover animation
   ---------------------------------------- */
.contact-map-card {
  transform: none !important;
  transition: none !important;
}

.contact-map-card:hover {
  transform: none !important;
}

/* Remove grayscale filter change on hover */
.contact-map-interactive iframe {
  filter: none !important;
  transition: none !important;
}

.contact-map-card:hover .contact-map-interactive iframe {
  filter: none !important;
}

/* ----------------------------------------
   HEADER: Menu column heading links
   ---------------------------------------- */
.menu-column-heading-link {
  text-decoration: none;
  display: block;
}

.menu-column-heading-link h3 {
  color: #000000;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  transition: color 0.3s ease;
}

.menu-column-heading-link:hover h3 {
  color: #e65616;
}

/* ----------------------------------------
   HEADER: Menu Banner Slideshow (Full Width)
   ---------------------------------------- */
.menu-banner-slideshow {
  width: 100%;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.menu-banner-track {
  width: 100%;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.menu-banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-banner-slide.active {
  opacity: 1;
  visibility: visible;
}

.menu-banner-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.menu-banner-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.menu-banner-prev,
.menu-banner-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.menu-banner-prev:hover,
.menu-banner-next:hover {
  border-color: #e65616;
  color: #e65616;
}

.menu-banner-prev svg,
.menu-banner-next svg {
  width: 18px;
  height: 18px;
}

.menu-banner-dots {
  display: flex;
  gap: 8px;
}

.menu-banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d0d0d0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-banner-dot:hover {
  background: #999;
}

.menu-banner-dot.active {
  background: #e65616;
  transform: scale(1.2);
}

/* Mobile Banner Slideshow */
.menu-mobile-banner-slideshow {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  margin: 20px 0;
}

.menu-mobile-banner-slideshow .menu-slideshow-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu-mobile-banner-slideshow .menu-slideshow-slide.active {
  opacity: 1;
  visibility: visible;
}

.menu-mobile-banner-slideshow .menu-slideshow-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Hide old slideshow sections */
.menu-contact-slideshow,
.menu-mobile-contact-slideshow {
  display: none !important;
}

/* ----------------------------------------
   RESPONSIVE: Contact form grid
   ---------------------------------------- */
@media (max-width: 1024px) {
  .contact-form-grid {
    grid-template-columns: 1fr !important;
    gap: 50px;
  }
  
  .contact-form-container {
    padding: 0 30px;
  }
  
  .menu-banner-slideshow {
    display: none;
  }
}

@media (max-width: 768px) {
  .contact-form-container {
    padding: 0 20px;
  }
  
  .contact-hero-scroll-text {
    display: none;
  }
}

/* ========================================
   FIX: Menu Overlay Pointer Events
   ======================================== */

/* Disable pointer events on menu overlay when hidden */
.menu-overlay {
  pointer-events: none;
}

/* Enable pointer events only when menu is active */
.menu-overlay.active {
  pointer-events: auto;
}

/* Ensure all children also respect this */
.menu-overlay:not(.active) * {
  pointer-events: none !important;
}

.menu-overlay.active * {
  pointer-events: auto;
}

/* Extra safety for the banner slideshow */
.menu-banner-slideshow {
  pointer-events: inherit;
}

.menu-mobile-banner-slideshow {
  pointer-events: inherit;
}

/* ========================================
   FIX: Contact Info Cards Visibility
   ======================================== */

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-card {
  display: flex !important;
  gap: 20px;
  padding: 25px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.contact-info-card.animate-fade-up {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.contact-info-card:hover {
  transform: translateX(10px) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(230, 86, 22, 0.2);
}

.contact-info-card-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, #e65616, #ff8a50);
  border-radius: 12px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.contact-info-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #ffffff;
  fill: none;
}

.contact-info-card-whatsapp .contact-info-card-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
}

.contact-info-card-whatsapp .contact-info-card-icon svg {
  fill: #ffffff;
  stroke: none;
}

.contact-info-card-content {
  display: block;
}

.contact-info-card-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1e;
  margin-bottom: 5px;
}

.contact-info-card-text {
  font-size: 0.95rem;
  color: #666666;
  line-height: 1.6;
}

.contact-info-card-link {
  font-size: 0.95rem;
  color: #e65616;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  display: inline-block;
}

.contact-info-card-link:hover {
  color: #ff6b2b;
}

/* Social Links Fix */
.contact-social-links {
  display: flex;
  gap: 15px;
}

.contact-social-link {
  width: 45px;
  height: 45px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  color: #666666;
  transition: all 0.3s ease;
}

.contact-social-link svg {
  width: 20px;
  height: 20px;
}

.contact-social-link:hover {
  background: #e65616;
  border-color: #e65616;
  color: #ffffff;
  transform: translateY(-3px);
}

.contact-social-link:hover svg {
  fill: #ffffff;
}
/* ============================================
   WHO WE ARE PAGE STYLES
   ============================================ */

/* =============================================
   WHO WE ARE - HERO SECTION
   ============================================= */
.wwa-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000;
}

.wwa-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.wwa-hero-video,
.wwa-hero-image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.wwa-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.wwa-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
  z-index: 2;
}

.wwa-hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wwa-hero-text {
  max-width: 1000px;
}

.wwa-hero-label {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(230, 86, 22, 0.2);
  border: 1px solid rgba(230, 86, 22, 0.4);
  border-radius: 30px;
  color: #e65616;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.wwa-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 30px;
}

.wwa-hero-line {
  display: block;
}

.wwa-hero-line-2 {
  color: #e65616;
}

.wwa-hero-line-2 em,
.wwa-hero-line-2 i {
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.wwa-hero-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 40px;
}

.wwa-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: #e65616;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.wwa-hero-btn:hover {
  background: #fff;
  color: #e65616;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.3);
}

.wwa-hero-btn svg {
  width: 20px;
  height: 20px;
  animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(5px); 
  }
  60% { transform: translateY(3px); }
}

/* Hero Floating Avatars */
.wwa-hero-avatars {
  display: flex;
  justify-content: center;
  gap: -15px;
  margin-top: 60px;
}

.wwa-hero-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  margin-left: -15px;
  transition: all 0.3s ease;
  }

.wwa-hero-avatar:first-child {
  margin-left: 0;
}

.wwa-hero-avatar:hover {
  transform: translateY(-10px) scale(1.1);
  z-index: 10;
}

.wwa-hero-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wwa-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e65616 0%, #ff8a5c 100%);
}

/* Float Animation */
@keyframes floatAnimation {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-10px) rotate(2deg); }
  75% { transform: translateY(-5px) rotate(-2deg); }
}

.animate-float {
  animation: floatAnimation 4s ease-in-out infinite;
}

/* Scroll Indicator */
.wwa-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.wwa-scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wwa-scroll-wheel {
  width: 4px;
  height: 8px;
  background: #e65616;
  border-radius: 2px;
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}


/* =============================================
   TEAM MOSAIC SECTION
   ============================================= */
.wwa-mosaic-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.wwa-mosaic-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.wwa-mosaic-header {
  text-align: center;
  }

.wwa-mosaic-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.wwa-mosaic-heading .black-text {
  color: #1a1a1a;
}

.wwa-mosaic-heading .highlight-text-italic {
  color: #e65616;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.wwa-mosaic-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}


/* =============================================
   MISSION & VISION SECTION
   ============================================= */
.wwa-mission-section {
  padding: 100px 0;
  background: #fff;
}

.wwa-mission-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.wwa-mission-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.wwa-mission-block:last-child {
  margin-bottom: 0;
}

.wwa-mission-right {
  direction: rtl;
}

.wwa-mission-right > * {
  direction: ltr;
}

.wwa-section-label {
  display: inline-block;
  color: #e65616;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.wwa-mission-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 25px;
}

.wwa-mission-heading em,
.wwa-mission-heading i {
  color: #e65616;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.wwa-mission-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.wwa-mission-image {
  position: relative;
}

.wwa-mission-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.wwa-mission-image-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #e65616 0%, #ff8a5c 100%);
  border-radius: 20px;
  bottom: -30px;
  left: -30px;
  z-index: -1;
}

.wwa-mission-image-accent.wwa-accent-right {
  left: auto;
  right: -10px;
}

.wwa-mission-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  border-radius: 20px;
}


/* =============================================
   LEADERSHIP TEAM SECTION
   ============================================= */
.wwa-leaders-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.wwa-leaders-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.wwa-leaders-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwa-leaders-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.wwa-leaders-heading .black-text {
  color: #1a1a1a;
}

.wwa-leaders-heading .highlight-text-italic {
  color: #e65616;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.wwa-leaders-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.wwa-leaders-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.wwa-leader-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.wwa-leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.wwa-leader-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.wwa-leader-image,
.wwa-leader-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wwa-leader-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.wwa-leader-card:hover .wwa-leader-video {
  opacity: 1;
}

.wwa-leader-card:hover .wwa-leader-image {
  transform: scale(1.05);
}

.wwa-leader-social {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.wwa-leader-card:hover .wwa-leader-social {
  opacity: 1;
  transform: translateY(0);
}

.wwa-leader-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  color: #1a1a1a;
  transition: all 0.3s ease;
}

.wwa-leader-social a:hover {
  background: #e65616;
  color: #fff;
}

.wwa-leader-info {
  padding: 30px;
}

.wwa-leader-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 5px;
}

.wwa-leader-title {
  font-size: 1rem;
  color: #e65616;
  font-weight: 500;
  margin-bottom: 15px;
}

.wwa-leader-bio {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wwa-leader-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  background: none;
  border: none;
  color: #e65616;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wwa-leader-expand-btn:hover {
  gap: 12px;
}

.wwa-leader-expand-btn svg {
  transition: transform 0.3s ease;
}

.wwa-leader-expand-btn:hover svg {
  transform: translateX(5px);
}


/* =============================================
   CULTURE & VALUES SECTION
   ============================================= */
.wwa-culture-section {
  padding: 100px 0;
  background: #fff;
}

.wwa-culture-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.wwa-culture-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwa-culture-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.wwa-culture-heading .black-text {
  color: #1a1a1a;
}

.wwa-culture-heading .highlight-text-italic {
  color: #e65616;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.wwa-culture-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.wwa-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.wwa-value-card {
  background: #f8f8f8;
  padding: 35px 25px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
}

.wwa-value-card:hover {
  background: #fff;
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.wwa-value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e65616 0%, #ff8a5c 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.wwa-value-card:hover .wwa-value-icon {
  transform: scale(1.1) rotate(5deg);
}

.wwa-value-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.wwa-value-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.wwa-value-text {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* Culture Gallery */
.wwa-culture-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wwa-gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.wwa-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.wwa-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  color: #fff;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.wwa-gallery-item:hover .wwa-gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.wwa-gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}


/* =============================================
   FULL TEAM GRID SECTION
   ============================================= */
.wwa-team-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.wwa-team-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.wwa-team-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwa-team-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.wwa-team-heading .black-text {
  color: #1a1a1a;
}

.wwa-team-heading .highlight-text-italic {
  color: #e65616;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.wwa-team-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.wwa-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.wwa-team-member {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

.wwa-member-photo {
  width: 100%;
  height: 100%;
}

.wwa-member-photo img,
.wwa-member-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.wwa-member-video {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.wwa-team-member:hover .wwa-member-video {
  opacity: 1;
}

.wwa-team-member:hover .wwa-member-photo img {
  transform: scale(1.1);
}

.wwa-member-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 20px 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.wwa-team-member:hover .wwa-member-overlay {
  transform: translateY(0);
}

.wwa-member-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.wwa-member-title {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 10px;
}

.wwa-member-fact {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 15px;
}

.wwa-member-social {
  display: flex;
  gap: 10px;
}

.wwa-member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.wwa-member-social a:hover {
  background: #e65616;
}

.wwa-member-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
}

.wwa-team-cta {
  text-align: center;
  margin-top: 50px;
}


/* =============================================
   STATS SECTION
   ============================================= */
.wwa-stats-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.wwa-stats-container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.wwa-stats-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwa-stats-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.wwa-stats-heading em,
.wwa-stats-heading i {
  color: #e65616;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.wwa-stats-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.wwa-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.wwa-stat-item {
  text-align: center;
  padding: 40px 20px;
  background: #f8f8f8;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.wwa-stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: #e65616;
}

.wwa-stat-value {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #e65616;
  line-height: 1;
  margin-bottom: 15px;
}

.wwa-stat-label {
  display: block;
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}


/* =============================================
   JOIN TEAM SECTION
   ============================================= */
.wwa-join-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.wwa-join-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wwa-join-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.wwa-join-heading .black-text {
  color: #1a1a1a;
}

.wwa-join-heading .highlight-text-italic {
  color: #e65616;
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

.wwa-join-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.wwa-join-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.wwa-join-benefits li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  font-size: 1rem;
  color: #555;
  border-bottom: 1px solid #eee;
}

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

.wwa-join-benefits svg {
  width: 24px;
  height: 24px;
  color: #e65616;
  flex-shrink: 0;
}

.wwa-join-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: #e65616;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.wwa-join-btn:hover {
  background: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.wwa-join-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.wwa-join-btn:hover svg {
  transform: translateX(5px);
}

.wwa-join-image {
  position: relative;
}

.wwa-join-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.wwa-join-image-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #e65616 0%, #ff8a5c 100%);
  border-radius: 20px;
  bottom: -30px;
  right: -30px;
  z-index: -1;
}

.wwa-join-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
  border-radius: 20px;
}


/* =============================================
   LEADER MODAL
   ============================================= */
.wwa-leader-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.wwa-leader-modal.active {
  opacity: 1;
  visibility: visible;
}

.wwa-leader-modal-content {
  background: #ffffff;
  border-radius: 25px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  transform: scale(0.9) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wwa-leader-modal.active .wwa-leader-modal-content {
  transform: scale(1) translateY(0);
}

.wwa-leader-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.wwa-leader-modal-close:hover {
  background: #e65616;
  color: #ffffff;
  transform: rotate(90deg);
}

.wwa-leader-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.wwa-leader-modal-media {
  position: relative;
  background: #e8dfd0;
  overflow: hidden;
}

.wwa-leader-modal-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.wwa-leader-modal-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.wwa-leader-modal-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.wwa-leader-modal-video.active {
  display: block;
}

.wwa-leader-modal-info {
  padding: 50px 40px;
  overflow-y: auto;
  max-height: 90vh;
}

.wwa-leader-modal-info h3 {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1e;
  margin: 0 0 8px 0;
}

.wwa-leader-modal-title {
  font-size: 16px;
  color: #e65616;
  font-weight: 600;
  margin: 0 0 25px 0;
}

.wwa-leader-modal-bio {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

.wwa-leader-modal-bio p {
  margin-bottom: 15px;
}

.wwa-leader-modal-bio p:last-child {
  margin-bottom: 0;
}

.wwa-leader-modal-socials {
  display: flex;
  gap: 15px;
}

.wwa-leader-modal-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f5f5f5;
  color: #333;
  transition: all 0.3s ease;
}

.wwa-leader-modal-socials a:hover {
  background: #e65616;
  color: #ffffff;
  transform: translateY(-3px);
}


/* =============================================
   WHO WE ARE - RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1200px) {
  .wwa-leaders-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .wwa-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .wwa-culture-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .wwa-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .wwa-hero-content {
    padding: 100px 0 60px;
    text-align: center;
  }

  .wwa-member-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 10px 5px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  gap: 0;
}

.wwa-team-member:hover .wwa-member-overlay {
  transform: translateY(0);
}
  


.wwa-member-name {
  color: #fff;
}

.wwa-member-title {
  color: #ffffff;
}

.wwa-member-fact {
  display: block;
  color: #ffffff;
  font-style: italic;
  }

.wwa-member-social {
  display: flex;
  }

.wwa-member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}


  .wwa-hero-avatars {
    margin-top: 40px;
    justify-content: center;
  }
  
  .wwa-hero-avatar {
    width: 50px;
    height: 50px;
    margin-left: -12px;
    animation: none !important;
  }
  
  .wwa-mosaic-header,
  .wwa-mission-content,
  .wwa-leaders-header,
  .wwa-culture-header,
  .wwa-team-header,
  .wwa-stats-header,
  .wwa-join-content {
    text-align: center;
  }

  .wwa-mission-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .wwa-mission-right {
    direction: ltr;
  }
  
  .wwa-mission-right .wwa-mission-image {
    order: -1;
  }
  
  .wwa-mission-image-accent {
    width: 80px;
    height: 80px;
    bottom: -20px;
    left: -10px;
  }
  
  .wwa-leaders-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  
  .wwa-team-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .wwa-join-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .wwa-join-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .wwa-join-benefits {
    text-align: left;
    display: inline-block;
  }
  
  .wwa-join-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .wwa-leader-modal-grid {
    grid-template-columns: 1fr;
  }
  
  .wwa-leader-modal-image img {
    border-radius: 24px 24px 0 0;
    max-height: 300px;
  }

  .team-modal-grid {
    grid-template-columns: 1fr;
  }

  .team-modal-image {
    border-radius: 24px 24px 0 0;
    max-height: 300px;
  }
}


.wwa-mosaic-grid {
  display: none;
}

@media (max-width: 768px) {
  .wwa-mosaic-section,
  .wwa-mission-section,
  .wwa-leaders-section,
  .wwa-culture-section,
  .wwa-team-section,
  .wwa-stats-section,
  .wwa-join-section {
    padding: 70px 0;
  }
  
  .wwa-hero-label {
    font-size: 12px;
    padding: 8px 20px;
  }
  
  .wwa-hero-description {
    font-size: 1rem;
  }
  
  .wwa-hero-btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  .wwa-hero-scroll {
    display: none;
  }
  
  .wwa-hero-avatar {
    width: 45px;
    height: 45px;
    margin-left: -10px;
  }
  
  
  .wwa-team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .wwa-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    margin: 0 0 30px auto;
  }
  
  .wwa-culture-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .wwa-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .wwa-stat-item {
    padding: 30px 15px;
  }
  
  .wwa-leader-modal {
    padding: 20px;
  }
  
  .wwa-leader-modal-info {
    padding: 30px 25px;
    text-align: center;
  }
  
  .wwa-leader-modal-socials {
    justify-content: center;
  }

  .team-modal {
    padding: 20px;
    align-items: center;
  }

  .team-modal-content {
    max-height: 90vh;
    border-radius: 25px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .team-modal-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .team-modal-media {
    position: relative;
  }

  .team-modal-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px 24px 0 0;
  }

  .team-modal-video {
    height: 300px;
    border-radius: 24px 24px 0 0;
  }

  .team-modal-info {
    padding: 30px 25px;
    overflow-y: auto;
    max-height: auto;
    text-align: center;
  }

  .team-modal-info h3 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .team-modal-title {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .team-modal-bio {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
  }

  .team-modal-socials {
    justify-content: center;
  }

  .team-modal-socials a {
    width: 45px;
    height: 45px;
  }

  .team-modal-close {
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 28px;
    background: rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 600px) {
  
  .wwa-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .wwa-hero-avatar {
    width: 40px;
    height: 40px;
    margin-left: -8px;
  }
}

@media (max-width: 480px) {
  
  .wwa-team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 320px;
  }
  
  .wwa-stats-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .wwa-culture-gallery {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .wwa-hero-avatar {
    width: 38px;
    height: 38px;
    margin-left: -6px;
  }
  
  .wwa-join-image-decoration {
    display: none;
  }
}
/* =============================================
   WHAT WE DO PAGE - COMPREHENSIVE STYLES
   ============================================= */

/* =============================================
   WWD HERO SECTION
   ============================================= */
.wwd-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  overflow: hidden;
}

.wwd-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.wwd-hero-video,
.wwd-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wwd-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(26,26,26,0.7) 50%, rgba(0,0,0,0.9) 100%);
  z-index: 2;
}

.wwd-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.wwd-hero-particles::before,
.wwd-hero-particles::after {`
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(230, 86, 22, 0.6);
  border-radius: 50%;
  animation: wwdParticleFloat 20s linear infinite;
}

.wwd-hero-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.wwd-hero-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: -10s;
}

@keyframes wwdParticleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

.wwd-hero-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0 80px;
  text-align: center;
}

.wwd-hero-text {
  max-width: 900px;
  margin: 0 auto;
}

.wwd-hero-label {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(230, 86, 22, 0.15);
  border: 1px solid rgba(230, 86, 22, 0.4);
  border-radius: 50px;
  color: #e65616;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  animation: wwdLabelPulse 2s ease-in-out infinite;
}

@keyframes wwdLabelPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(230, 86, 22, 0.3);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(230, 86, 22, 0);
  }
}

.wwd-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 25px;
}

.wwd-hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 40px;
}

.wwd-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.wwd-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.wwd-hero-btn-primary {
  background: #e65616;
  color: #fff;
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.4);
}

.wwd-hero-btn-primary:hover {
  background: #ff6a2c;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 86, 22, 0.5);
}

.wwd-hero-btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.wwd-hero-btn-primary:hover svg {
  transform: translateX(5px);
}

.wwd-hero-btn-secondary {
  background: transparent;
  color: #e65616;
  border: 2px solid #e65616;
}

.wwd-hero-btn-secondary:hover {
  background: rgba(230, 86, 22, 0.1);
  border-color: #ff6a2c;
  transform: translateY(-3px);
  color: #ff6a2c;
}

/* Scroll Indicator */


@keyframes wwdScrollLine {
  0%, 100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.5;
    transform: scaleY(0.6);
  }
}

/* Floating Icons */
.wwd-hero-floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
}

.wwd-floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(230, 86, 22, 0.1);
  border: 1px solid rgba(230, 86, 22, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wwdIconFloat 6s ease-in-out infinite;
  animation-delay: var(--delay);
  backdrop-filter: blur(5px);
}

.wwd-floating-icon:nth-child(1) { top: 15%; left: 8%; }
.wwd-floating-icon:nth-child(2) { top: 25%; right: 10%; }
.wwd-floating-icon:nth-child(3) { bottom: 30%; left: 12%; }
.wwd-floating-icon:nth-child(4) { bottom: 20%; right: 8%; }

.wwd-floating-icon svg {
  width: 28px;
  height: 28px;
  color: #e65616;
}

@keyframes wwdIconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
    opacity: 1;
  }
}


/* =============================================
   WWD INTRO / VALUE PROPOSITION SECTION
   ============================================= */
.wwd-intro {
  padding: 120px 0;
  background: #ffffff;
}

.wwd-intro-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.wwd-intro-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.wwd-intro-label {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(230, 86, 22, 0.1);
  border-radius: 50px;
  color: #e65616;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wwd-intro-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 25px;
}

.wwd-intro-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.wwd-intro-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.wwd-intro-stat {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 20px;
  text-align: center;

  transition: all 0.4s ease;
  border: 1px solid transparent;
}

.wwd-intro-stat:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 86, 22, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.wwd-intro-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #e65616;
  line-height: 1;
  margin-bottom: 10px;
}

.wwd-stat-value {
  display: inline-block;
}

.wwd-intro-stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}


/* =============================================
   WWD SERVICES SECTION
   ============================================= */
.wwd-services {
  padding: 100px 0;
  background: #f8f8f8;
}

.wwd-services-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.wwd-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwd-services-label {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(230, 86, 22, 0.1);
  border-radius: 50px;
  color: #e65616;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wwd-services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.wwd-services-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Tabs */
.wwd-services-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.wwd-services-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.wwd-services-tabs::-webkit-scrollbar {
  display: none;
}

.wwd-service-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.wwd-service-tab:hover {
  background: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.wwd-service-tab.active {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 10px rgba(230, 86, 22, 0.3);
}

.wwd-tab-icon {
  width: 24px;
  height: 24px;
}

.wwd-tab-icon svg {
  width: 100%;
  height: 100%;
}

.wwd-service-tab.active .wwd-tab-icon svg {
  stroke: #fff;
}

.wwd-tab-title {
  font-size: 14px;
  font-weight: 600;
}

/* Service Panels */
.wwd-services-panels {
  position: relative;
  display: grid;
}

.wwd-service-panel {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 30px;
  padding: 50px;
  border: 1px solid #eee;
}

.wwd-service-panel:not(.active) {
  display: none;
}

.wwd-service-panel.active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 1;
  display: grid;
}

.wwd-service-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.wwd-service-panel-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.25);
}

.wwd-service-panel-icon svg {
  width: 35px;
  height: 35px;
  stroke: #fff;
}

.wwd-service-panel-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
}

.wwd-service-panel h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.wwd-service-short {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.wwd-service-long {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.wwd-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}

.wwd-service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #444;
}

.wwd-service-features svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.wwd-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(230, 86, 22, 0.25);
}

.wwd-service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(230, 86, 22, 0.35);
}

.wwd-service-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.wwd-service-btn:hover svg {
  transform: translateX(5px);
}

/* Service Panel Visual */
.wwd-service-panel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wwd-service-panel-graphic {
  position: relative;
  width: 350px;
  height: 350px;
}

.wwd-service-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: wwdCirclePulse 4s ease-in-out infinite;
}

.wwd-service-circle-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.2;
  animation-delay: 0s;
}

.wwd-service-circle-2 {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  opacity: 0.4;
  animation-delay: 0.5s;
}

.wwd-service-circle-3 {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  opacity: 0.6;
  animation-delay: 1s;
}

.wwd-service-icon-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(230, 86, 22, 0.4);
  animation: wwdIconPulse 3s ease-in-out infinite;
}

.wwd-service-icon-large svg {
  width: 50px;
  height: 50px;
  stroke: #fff;
}

@keyframes wwdCirclePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.4;
  }
}

@keyframes wwdIconPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}


/* =============================================
   WWD SERVICE CARDS GRID
   ============================================= */
.wwd-cards {
  padding: 120px 0;
  background: #ffffff;
}

.wwd-card.animate-slide-up.is-visible {
  background: #f8f8f8;
}

.wwd-cards-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.wwd-cards-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwd-cards-label {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(230, 86, 22, 0.1);
  border-radius: 50px;
  color: #e65616;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wwd-cards-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
}

.wwd-cards-header h2 .highlight-text-italic {
  display: block;
}

.wwd-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.wwd-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  animation-delay: var(--delay);
}

.wwd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.wwd-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.wwd-card:hover::before {
  transform: scaleX(1);
}

.wwd-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent) 0%, rgba(230, 86, 22, 0.7) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.wwd-card:hover .wwd-card-icon {
  transform: scale(1.1) rotate(5deg);
}

.wwd-card-icon svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
}

.wwd-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.wwd-card:hover h3 {
  color: var(--accent);
}

.wwd-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.wwd-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.wwd-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.wwd-card:hover .wwd-card-link svg {
  transform: translateX(5px);
}


/* =============================================
   WWD INDUSTRIES SECTION
   ============================================= */
.wwd-industries {
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}

.wwd-industries-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.wwd-industries-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwd-industries-label {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(230, 86, 22, 0.1);
  border-radius: 50px;
  color: #e65616;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wwd-industries-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.wwd-industries-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.wwd-industries-marquee {
  position: relative;
  overflow: hidden;
  margin: 0 -5%;
  padding: 20px 0;
}

.wwd-industries-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(230, 86, 22, 0.3);
  background: rgba(255, 255, 255, 0.95);
  color: #e65616;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wwd-industries-arrow:hover {
  background: #e65616;
  color: white;
  border-color: #e65616;
  box-shadow: 0 6px 20px rgba(230, 86, 22, 0.3);
}

.wwd-industries-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.wwd-industries-arrow-left {
  left: 6%;
}

.wwd-industries-arrow-right {
  right: 6%;
}

@media (max-width: 768px) {
  .wwd-industries-arrow {
    width: 40px;
    height: 40px;
  }
  .wwd-industries-arrow-left {
    left: 3%;
  }
  .wwd-industries-arrow-right {
    right: 3%;
  }
}

.wwd-industries-track {
  display: flex;
  gap: 30px;
  animation: wwdIndustriesScroll 40s linear infinite;
  width: max-content;
}

.wwd-industries-marquee:hover .wwd-industries-track {
  animation-play-state: paused;
}

@keyframes wwdIndustriesScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.wwd-industry-item {
  flex-shrink: 0;
  width: 280px;
  background: #f8f8f8;
  padding: 35px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.wwd-industry-item:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 86, 22, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.wwd-industry-icon {
  width: 60px;
  height: 60px;
  background: rgba(230, 86, 22, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.wwd-industry-item:hover .wwd-industry-icon {
  background: #e65616;
}

.wwd-industry-icon svg {
  width: 28px;
  height: 28px;
  stroke: #e65616;
  transition: stroke 0.4s ease;
}

.wwd-industry-item:hover .wwd-industry-icon svg {
  stroke: #fff;
}

.wwd-industry-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.wwd-industry-item p {
  font-size: 0.9rem;
  color: #666;
}


/* =============================================
   WWD TOOLS SECTION
   ============================================= */


/* =============================================
   WWD FAQ SECTION
   ============================================= */
.wwd-faq {
  padding: 120px 0;
  background: #f8f8f8;
}

.wwd-faq-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.wwd-faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwd-faq-label {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(230, 86, 22, 0.1);
  border-radius: 50px;
  color: #e65616;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wwd-faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
}

.wwd-faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.wwd-faq-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  animation-delay: var(--delay);
}

.wwd-faq-item:hover {
  border-color: rgba(230, 86, 22, 0.2);
}

.wwd-faq-item.active {
  border-color: #e65616;
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.1);
}

.wwd-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  background-color: #ffffff;
}

.wwd-faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

.wwd-faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.wwd-faq-icon span {
  position: absolute;
  background: #e65616;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.wwd-faq-icon span:first-child {
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.wwd-faq-icon span:last-child {
  width: 3px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.wwd-faq-item.active .wwd-faq-icon span:last-child {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.wwd-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background-color: #ffffff;
}

.wwd-faq-item.active .wwd-faq-answer {
  max-height: 500px;
}

.wwd-faq-answer p {
  padding: 0 30px 25px;
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}


/* =============================================
   WWD RESPONSIVE STYLES
   ============================================= */
@media (max-width: 1200px) {
  .wwd-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .wwd-service-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .wwd-service-panel-visual {
    order: -1;
  }
  
  .wwd-service-panel-graphic {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 992px) {
  .wwd-hero-content {
    padding: 100px 0 60px;
  }
  
  .wwd-hero-floating-icons {
    display: none;
  }
  
  .wwd-intro-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .wwd-intro-stats {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .wwd-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .wwd-services-tabs {
    justify-content: flex-start;
  }
  
  .wwd-process-timeline {
    padding-left: 0;
  }
  
  .wwd-process-step {
    flex-direction: column;
    gap: 20px;
  }
  
  
  
  
  .wwd-services-panels {
    min-height: auto;
  }
  
  .wwd-service-panel {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .wwd-hero h1 {
    font-size: 2.2rem;
  }
  
  .wwd-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .wwd-hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .wwd-intro,
  .wwd-services,
  .wwd-cards,
  .wwd-process,
  .wwd-industries,
  .wwd-faq {
    padding: 80px 0;
  }
  
  .wwd-intro-stats {
    grid-template-columns: -1fr;
    max-width: 300px;
  }
  
  .wwd-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .wwd-services-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px;
    margin: 0 -5%;
    padding-left: 5%;
    padding-right: 5%;
  }
  
  .wwd-service-tab {
    padding: 12px 18px;
  }
  
  .wwd-tab-title {
    font-size: 13px;
  }
  
  .wwd-service-panel {
    padding: 25px 20px;
    border-radius: 20px;
    grid-template-columns: 1fr;
  }
  
  .wwd-service-panel-visual {
    display: none;
  }
  
  .wwd-services-panels {
    min-height: auto;
    margin: 0;
  }
  
  .wwd-service-panel h3 {
    font-size: 1.6rem;
  }
  
  .wwd-service-panel-graphic {
    width: 220px;
    height: 220px;
  }
  
  .wwd-faq-question {
    padding: 20px;
  }
  
  .wwd-process-timeline::before {
    left: 34px;
  }
  
  .wwd-process-step {
    gap: 20px;
  }
  
  .wwd-process-number {
    width: 60px;
    height: 60px;
    font-size: 18px;
    flex-shrink: 0;
  }
  
  .wwd-process-content h3 {
    font-size: 18px;
  }
  
  .wwd-process-content p {
    font-size: 14px;
  }
  
  .wwd-faq-question span {
    font-size: 1rem;
  }
  
  .wwd-faq-answer p {
    padding: 0 20px 20px;
  }
}

@media (max-width: 480px) {
  .wwd-hero-label {
    font-size: 12px;
    padding: 8px 18px;
  }
  
  .wwd-hero h1 {
    font-size: 1.8rem;
  }
  
  .wwd-hero-description {
    font-size: 0.95rem;
  }
  
  .wwd-intro-stat-number {
    font-size: 2.5rem;
  }
  
}


/* =============================================
   COMPREHENSIVE FIXES - DECEMBER 2025
   ============================================= */

/* =============================================
   HEADER DESKTOP NAV LINKS
   ============================================= */
.header-nav-desktop {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: auto;
  margin-left: 40px;
}

.header-nav-link {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #e65616;
  transition: width 0.3s ease;
}

.header-nav-link:hover {
  color: #e65616;
}

.header-nav-link:hover::after {
  width: 100%;
}

/* Header scrolled - dark nav links */
.site-header.scrolled .header-nav-link {
  color: #ffffff;
}

.site-header.scrolled .header-nav-link:hover {
  color: #e65616;
}

/* Hide on mobile */
@media (max-width: 992px) {
  .header-nav-desktop {
    display: none;
  }
}

/* =============================================
   FRONT-PAGE INFO SECTIONS (RENAMED FROM info1/info2)
   ============================================= */
.fp-info1-section,
.fp-info2-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.fp-info1-section { background: #ffffff; }
.fp-info2-section { background: #f8f8f8; }

/* Remove the decorative shapes */
.fp-info1-section::before,
.fp-info1-section::after,
.fp-info2-section::before,
.fp-info2-section::after {
  display: none !important;
}

.fp-info1-container,
.fp-info2-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.fp-info1-heading,
.fp-info2-heading {
  text-align: left;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

.fp-info1-content,
.fp-info2-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.fp-info2-content {
  direction: ltr;
}

.fp-info2-content .fp-info2-image {
  order: -1;
}

.fp-info1-text,
.fp-info2-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  display: flex;
  flex-direction: column;
}

.fp-info1-text p,
.fp-info2-text p {
  margin-bottom: 20px;
}

.fp-info1-text .cta-button,
.fp-info2-text .cta-button {
  align-self: flex-start;
  margin-top: 20px;
  margin-top: 20px;
}
.fp-info1-body p:last-child {
 margin-bottom: 0; 
}

.fp-info1-image img,
.fp-info2-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
  .fp-info1-content,
  .fp-info2-content {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }
  
  .fp-info1-image,
  .fp-info2-image {
    order: -1;
  }
  
  .fp-info1-heading,
  .fp-info2-heading {
    text-align: center;
  }
  
  .fp-info1-text,
  .fp-info2-text {
    text-align: center;
  }
  
  .fp-info1-text .cta-button,
  .fp-info2-text .cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
  }
}

/* =============================================
   FORM INITIAL CHOICE BUTTONS - SIDE BY SIDE
   ============================================= */
.initial-choice-buttons {
  display: flex;
  gap: 20px;
  width: 100%;
}

.initial-choice-buttons .choice-btn {
  flex: 1;
  min-width: 0;
}

@media (max-width: 600px) {
  .initial-choice-buttons {
    flex-direction: column !important;
  }
  
  .initial-choice-buttons .choice-btn {
    width: 100%;
  }
}

/* =============================================
   WWD SCROLL INDICATOR - MOUSE STYLE
   ============================================= */


@keyframes wwdScrollWheel {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* Remove old scroll line styles */

/* =============================================
   WWD PROCESS SECTION - MATCHING SERVICE PAGES
   ============================================= */
.wwd-process {
  background: #f8f8f8;
  padding: 120px 40px;
}

.wwd-process-container {
  max-width: 1000px;
  margin: 0 auto;
}

.wwd-process-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwd-process-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e65616;
  margin-bottom: 20px;
}

.wwd-process-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  margin-bottom: 20px;
}

.wwd-process-header p {
  font-size: 18px;
  color: #666;
}

.wwd-process-timeline {
  position: relative;
}

.wwd-process-timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
}

.wwd-process-step {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
}

.wwd-process-step:last-child {
  margin-bottom: 0;
}

.wwd-process-number {
  width: 80px;
  height: 80px;
  background: #fff;
  border: 2px solid #e65616;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #e65616;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.wwd-process-step:hover .wwd-process-number {
  background: #e65616;
  color: #fff;
  box-shadow: 0 8px 25px rgba(230, 86, 22, 0.3);
}

.wwd-process-content {
  padding-top: 15px;
}

.wwd-process-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1e;
  margin-bottom: 10px;
}

.wwd-process-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

@media (max-width: 768px) {
  .wwd-process {
    padding: 80px 20px;
  }
  
  .wwd-process-timeline {
    position: relative;
  }
  
  .wwd-process-timeline::before {
    left: 40px;
  }
  
  .wwd-process-step {
    margin-bottom: 50px;
    gap: 20px;
    display: -webkit-inline-box;
  }
  
  .wwd-process-number {
    width: 70px;
    height: 70px;
    font-size: 20px;
  }
  
  .wwd-process-content {
    padding-top: 12px;
  }
  
  .wwd-process-content h3 {
    font-size: 18px;
  }
  
  .wwd-process-content p {
    font-size: 14px;
  }
}

/* =============================================
   WWD FAQ - WHITE BACKGROUND
   ============================================= */
.wwd-faq {
  background: #f8f8f8;
}

/* =============================================
   WWD MOBILE CENTERING
   ============================================= */
@media (max-width: 992px) {
  .wwd-intro-header,
  .wwd-services-header,
  .wwd-cards-header,
  .wwd-process-header,
  .wwd-industries-header,
  .wwd-faq-header {
    text-align: center !important;
  }
  
  .wwd-intro-header h2,
  .wwd-services-header h2,
  .wwd-cards-header h2,
  .wwd-process-header h2,
  .wwd-industries-header h2,
  .wwd-faq-header h2 {
    text-align: center !important;
  }
  
  .wwd-intro-header p,
  .wwd-services-header p,
  .wwd-cards-header p,
  .wwd-process-header p,
  .wwd-industries-header p,
  .wwd-faq-header p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
  
  .wwd-hero-content {
    text-align: center;
  }
  
  .wwd-hero-text {
    text-align: center;
  }
  
  .wwd-hero-buttons {
    justify-content: center;
  }
  
  .wwd-intro-content {
    text-align: center;
  }
  
  .wwd-intro-text {
    text-align: center;
  }
  
  .wwd-intro-stats {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .wwd-hero h1 {
    text-align: center;
  }
  
 .wwd-process-content {
  word-wrap: break-word;
  max-width: 280px;
  margin-left: 20px;
 }

  .wwd-hero-description {
    text-align: center;
  }
  
  .wwd-hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .wwd-hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .wwd-cards-grid {
    justify-content: center;
  }
  
  .wwd-card {
    text-align: center;
  }
  
  .wwd-card-icon {
    margin: 0 auto 20px;
  }
  
  .wwd-faq-question span {
    text-align: left;
  }
}

/* =============================================
   WWD SERVICES ANIMATION - SLOW DOWN
   ============================================= */
.wwd-service-tab {
  transition: all 0.5s ease;
}

.wwd-service-panel {
  transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
}

.wwd-service-circle {
  animation-duration: 8s !important;
}

.wwd-service-circle-1 {
  animation: wwdCirclePulse 8s ease-in-out infinite !important;
}

.wwd-service-circle-2 {
  animation: wwdCirclePulse 10s ease-in-out infinite 0.5s !important;
}

.wwd-service-circle-3 {
  animation: wwdCirclePulse 12s ease-in-out infinite 1s !important;
}

.wwd-service-icon-large {
  animation: wwdIconPulse 4s ease-in-out infinite !important;
}

/* =============================================
   OLD INFO SECTION STYLES RESET
   Prevent conflicts with other sections
   ============================================= */
/* Hide the old info section decorative elements globally */
.info1-section::before,
.info1-section::after,
.info2-section::before,
.info2-section::after {
  display: none !important;
}

/* =============================================
   MOBILE MENU - HEADING WITH ARROW
   ============================================= */
.menu-mobile-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-mobile-toggle-text {
  flex: 1;
  padding: 15px 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.menu-mobile-toggle-text:hover {
  color: #e65616;
}

.menu-mobile-toggle-arrow {
  padding: 15px 10px 15px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  }

.menu-mobile-toggle .menu-arrow {
  font-size: 12px;
  color: #999;
  transition: transform 0.3s ease;
}

.menu-mobile-item.open .menu-mobile-toggle .menu-arrow {
  transform: rotate(180deg);
}

/* =============================================
   CONTACT FORM SECTION - 50/50 LAYOUT
   ============================================= */
.contact-form-section {
  padding-right: 5%;
  padding-left: 5%;
  background: #ffffff;
}

.contact-form-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.contact-sidebar {
  padding: 40px;
  background: #fff;
  border-radius: 20px;
}

.contact-form-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-top: 4px solid #e65616;
}

@media (max-width: 992px) {
  .contact-form-container {
    grid-template-columns: 1fr !important;
    gap: 40px;
    display: grid!important;
  }
  
  .contact-sidebar {
    order: 2;
    margin-bottom: 50px;
  }
  
  .contact-form-card {
    order: 1;
  }
}

/* =====================================================
   COMPREHENSIVE HEADING STANDARDIZATION
   ALL PAGES MUST USE THESE STYLES
   ===================================================== */

/* H1 - Hero/Page Title Headings */
h1 {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1:not(.hero h1):not(.mtt-hero-title):not(.about-hero h1):not(.casestudies-page-hero h1) {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 30px;
}

/* H2 - Section Headings */
h2 {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-weight: 700;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  color: #1a1a1e;
  margin-bottom: 20px;
}

/* H3 - Sub-Headings */
h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
  color: #1a1a1e;
  margin-bottom: 15px;
}

/* H4 - Small Headings */
h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: #1a1a1e;
  margin-bottom: 10px;
}

/* Section Labels - CONSISTENT ACROSS ALL PAGES */
.section-label,
.page-label,
.process-label,
.faq-label,
.results-label {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e65616;
  margin-bottom: 20px;
}

/* Description & Body Text */
p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 20px;
}

p.large {
  font-size: 18px;
  line-height: 1.8;
}

p.small {
  font-size: 14px;
  line-height: 1.6;
}

/* =====================================================
   UNIFIED BUTTON STYLES - ALL PAGES
   ===================================================== */

/* Primary Button - Orange with hover animation */
.cta-btn,
.cta-button,
.btn,
.btn-primary,
[class*="-btn-primary"],
a.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #e65616 !important;
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #e65616 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover,
.cta-button:hover,
.btn:hover,
.btn-primary:hover,
[class*="-btn-primary"]:hover,
a.button-primary:hover {
  background: #d94c0a !important;
  border-color: #d94c0a !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 86, 22, 0.3);
}

.cta-btn svg,
.cta-button svg,
.btn svg,
[class*="-btn-primary"] svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  stroke: currentColor;
  fill: none;
}

.cta-btn:hover svg,
.cta-button:hover svg,
.btn:hover svg,
[class*="-btn-primary"]:hover svg {
  transform: translateX(4px);
}

.choice-btn:hover svg {
  transform: none !important;
}

/* Secondary Button - Transparent with orange border */
.btn-secondary,
.btn-outline,
[class*="-btn-secondary"],
a.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent !important;
  color: #e65616 !important;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #e65616 !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover,
.btn-outline:hover,
[class*="-btn-secondary"]:hover,
a.button-secondary:hover {
  background: rgba(230, 86, 22, 0.1) !important;
  color: #d94c0a !important;
  border-color: #d94c0a !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 86, 22, 0.2);
}

/* =====================================================
   CONTAINER WIDTH STANDARDIZATION
   ===================================================== */

.page-container,
.container,
.content-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: block;
}

.full-width-section {
  width: 100%;
}

.hero-full-width {
  width: 100%;
}

/* Section padding standards */
.section-padding {
  padding: 120px 5%;
}

.section-padding-sm {
  padding: 50px 5%;
}

.section-padding-lg {
  padding: 160px 5%;
}

/* =====================================================
   ALTERNATING BACKGROUND COLORS
   ===================================================== */

[data-section-theme="light"] {
  background: #ffffff;
}

[data-section-theme="light"]:nth-of-type(even) {
  background: #f8f8f8;
}

[data-section-theme="dark"] {
  background: #1a1a1e;
  color: #ffffff;
}

/* =====================================================
   FAQ SECTION - SPLIT LAYOUT (Image Left, FAQs Right)
   ===================================================== */

.faq-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.faq-split-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.faq-split-content {
  width: 100%;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}

.faq-item:first-child {
  padding-top: 0;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1e;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #e65616;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  stroke: currentColor;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 0;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  color: #666666;
}

/* FAQ Mobile Responsive */
@media (max-width: 992px) {
  .faq-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .faq-split-image {
    order: -1;
  }
}

/* =====================================================
   TEAM CARD RECTANGLES - MEET THE TEAM PAGE
   ===================================================== */

.mtt-card-rectangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f8f8f8;
  border-radius: 12px;
  z-index: -1;
  transform: rotate(-2deg) scale(1.05);
  transition: all 0.3s ease;
}

.mtt-team-card:hover .mtt-card-rectangle {
  transform: rotate(-2deg) scale(1.08);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.mtt-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

/* =====================================================
   TEAM TEASER CARDS - CLICKABLE (ABOUT US)
   ===================================================== */

.team-teaser-image-link {
  display: block;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.team-teaser-image-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-teaser-image-link .team-teaser-image {
  margin: 0;
}

/* =====================================================
   READ MORE BUTTONS FOR CASE STUDIES
   ===================================================== */

.case-study-button,
.result-button {
  margin-top: 20px;
  display: block;
}

.case-study-button .cta-btn,
.result-button .cta-btn {
  width: 100%;
  justify-content: center;
}

/* =====================================================
   RESPONSIVE ADJUSTMENTS
   ===================================================== */

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 5%;
  }
  
  .section-padding-lg {
    padding: 120px 5%;
  }
  
  h1 {
    font-size: clamp(32px, 6vw, 42px) !important;
    line-height: 1.2;
  }
  
  h2 {
    font-size: clamp(28px, 5vw, 36px) !important;
    line-height: 1.25;
  }
  
  h3 {
    font-size: 20px;
  }
  
  p {
    font-size: 15px;
    line-height: 1.7;
  }
  
  .cta-btn,
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}
/* =====================================================
   UNIFIED WIDTH STANDARDIZATION
   ===================================================== */

/* TIER 2: STANDARD CONTENT (90% / 1400px) */

.about-container,
.about-approach-container,
.about-team-teaser-container,
.about-values-container,
.about-who-container,
.team-container,
.services-grid-container,
.case-studies-container,
.news-container,
.reviews-container,
.cta-container,
.footer-container,
.about-stats-container,
.about-story-container,
.about-why-container,
.fp-info2-container,
.info2-container,
.auto-page-info-container,
.auto-page-results-container,
.auto-page-services-container,
.auto-page-stats-container,
.cro-page-info-container,
.cro-page-results-container,
.cro-page-services-container,
.cro-page-stats-container,
.ds-page-info-container,
.ds-page-results-container,
.ds-page-services-container,
.ds-page-stats-container,
.email-page-info-container,
.email-page-services-container,
.email-page-stats-container,
.ppc-page-info-container,
.ppc-page-results-container,
.ppc-page-services-container,
.ppc-page-stats-container,
.seo-page-info-container,
.seo-page-results-container,
.seo-page-reviews-container,
.seo-page-services-container,
.seo-page-stats-container,
.webdesign-page-info-container,
.webdesign-page-results-container,
.webdesign-page-services-container,
.webdesign-page-stats-container,
.webdev-page-info-container,
.webdev-page-results-container,
.webdev-page-services-container,
.webdev-page-stats-container,
.testimonials-page-carousel-container,
.testimonials-page-stats-container,
.testimonials-page-video-container,
.mtt-team-container,
.casestudies-page-container,
.contact-map-container,
.contact-booking-container,
.testimonials-page-grid-container,
.testimonials-page-logos-container,
.testimonials-page-featured-container,
.wwa-culture-container,
.wwa-join-container,
.wwa-leaders-container,
.wwa-mission-container,
.wwa-stats-container,
.wwa-mosaic-container,
.wwa-team-container,
.wwd-cards-container,
.wwd-industries-container,
.wwd-intro-container,

/* TIER 3: FOCUSED CONTENT (1200px) */

.auto-page-faq-container,
.contact-faq-container,
.cro-page-faq-container,
.ds-page-faq-container,
.email-page-faq-container,
.ppc-page-faq-container,
.seo-page-faq-container,
.seo-page-cta-container,
.webdesign-page-faq-container,
.webdev-page-faq-container,
.wwd-faq-container,
.contact-cta-container,
.testimonials-page-full-quote-container {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

/* Who We Are page containers - add side padding so content doesn't touch screen edges */

@media (max-width: 768px) {
.wwa-culture-container,
.wwa-join-container,
.wwa-leaders-container,
.wwa-mission-container,
.wwa-stats-container,
.wwa-mosaic-container,
.wwa-team-container {
  padding-left: 5% !important;
  padding-right: 5% !important;
  box-sizing: border-box !important;
}
}

/* TIER 4: EMPHASIZED CONTENT (1000px) */

.long-cta-container,
.about-final-cta-container,
.auto-page-longcta-container,
.auto-page-process-container,
.cro-page-longcta-container,
.cro-page-process-container,
.ds-page-longcta-container,
.ds-page-process-container,
.email-page-longcta-container,
.email-page-process-container,
.ppc-page-longcta-container,
.ppc-page-process-container,
.seo-page-longcta-container,
.seo-page-process-container,
.testimonials-page-cta-container,
.webdesign-page-longcta-container,
.webdesign-page-process-container,
.webdev-page-longcta-container,
.webdev-page-process-container,
.wwd-process-container {
  width: 90% !important;
  max-width: 1000px !important;
  margin: 0 auto !important;
}
/* SEO Page FAQ Split Layout - Mobile Responsive */
@media (max-width: 992px) {
  .seo-faq-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .seo-faq-split-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .seo-page-faq {
    padding: 80px 20px;
  }

  .seo-page-faq-header {
    margin-bottom: 40px;
  }

  .seo-faq-split-layout {
    gap: 30px;
  }

  .seo-page-faq-question {
    padding: 20px 20px;
    font-size: 16px;
  }

  .seo-page-faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

/* ===== AUTOMATION PAGE FAQ SPLIT LAYOUT ===== */
.auto-faq-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.auto-faq-split-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.auto-faq-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.auto-faq-split-content {
  width: 100%;
}

/* ===== CRO PAGE FAQ SPLIT LAYOUT ===== */
.cro-faq-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.cro-faq-split-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cro-faq-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.cro-faq-split-content {
  width: 100%;
}

/* ===== DIGITAL STRATEGY PAGE FAQ SPLIT LAYOUT ===== */
.ds-faq-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.ds-faq-split-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.ds-faq-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.ds-faq-split-content {
  width: 100%;
}

/* ===== EMAIL MARKETING PAGE FAQ SPLIT LAYOUT ===== */
.email-faq-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.email-faq-split-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.email-faq-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.email-faq-split-content {
  width: 100%;
}

/* ===== WEB DESIGN PAGE FAQ SPLIT LAYOUT ===== */
.webdesign-faq-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.webdesign-faq-split-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.webdesign-faq-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.webdesign-faq-split-content {
  width: 100%;
}

/* ===== WEB DEVELOPMENT PAGE FAQ SPLIT LAYOUT ===== */
.webdev-faq-split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.webdev-faq-split-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.webdev-faq-split-image img {
  width: 100%;
  height: auto;
  display: block;
}

.webdev-faq-split-content {
  width: 100%;
}

/* ===== RESPONSIVE: All FAQ Split Layouts ===== */
@media (max-width: 992px) {
  .auto-faq-split-layout,
  .cro-faq-split-layout,
  .ds-faq-split-layout,
  .email-faq-split-layout,
  .webdesign-faq-split-layout,
  .webdev-faq-split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .auto-faq-split-image,
  .cro-faq-split-image,
  .ds-faq-split-image,
  .email-faq-split-image,
  .webdesign-faq-split-image,
  .webdev-faq-split-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .auto-page-faq,
  .cro-page-faq,
  .ds-page-faq,
  .email-page-faq,
  .webdesign-page-faq,
  .webdev-page-faq {
    padding: 80px 20px;
  }

  .auto-page-faq-header,
  .cro-page-faq-header,
  .ds-page-faq-header,
  .email-page-faq-header,
  .webdesign-page-faq-header,
  .webdev-page-faq-header {
    margin-bottom: 40px;
  }

  .auto-faq-split-layout,
  .cro-faq-split-layout,
  .ds-faq-split-layout,
  .email-faq-split-layout,
  .webdesign-faq-split-layout,
  .webdev-faq-split-layout {
    gap: 30px;
  }

  .auto-page-faq-question,
  .cro-page-faq-question,
  .ds-page-faq-question,
  .email-page-faq-question,
  .webdesign-page-faq-question,
  .webdev-page-faq-question {
    padding: 20px 20px;
    font-size: 16px;
  }

  .auto-page-faq-answer p,
  .cro-page-faq-answer p,
  .ds-page-faq-answer p,
  .email-page-faq-answer p,
  .webdesign-page-faq-answer p,
  .webdev-page-faq-answer p {
    padding: 0 20px 20px;
    font-size: 14px;
  }
}

/* ================================
   OUR WORK PAGE STYLES
   ================================ */

/* ================================
   OUR WORK HERO SECTION
   ================================ */
.ow-hero {
  background: #000000;
  min-height: 100vh;
  padding: 200px 5% 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ow-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ow-hero-video,
.ow-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ow-hero-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 86, 22, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.ow-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.ow-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 100%;
  padding: 60px;
  text-align: center;
}

.ow-hero-text {
  max-width: 700px;
}

.ow-hero-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ow-hero-title {
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #ffffff;
}

.ow-hero-line {
  display: block;
}

.ow-hero-line-2 em {
  color: #e65616;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.ow-hero-description {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  }

.ow-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #e65616;
  color: white;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ow-hero-btn:hover {
  background: #d64d0d;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(230, 86, 22, 0.3);
}

.ow-hero-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.ow-hero-btn:hover svg {
  transform: translateY(3px);
}

/* ================================
   FEATURED PROJECTS SECTION
   ================================ */
.ow-featured {
  padding: 140px 5%;
  background: #ffffff;
  position: relative;
}

.ow-featured-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.ow-featured-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.ow-featured-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ow-featured-heading {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
}

.ow-featured-heading .black-text {
  color: #000;
  display: block;
}

.ow-featured-heading .highlight-text-italic {
  display: block;
}

.ow-featured-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.ow-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.ow-featured-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
}

.ow-featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(230, 86, 22, 0.15);
  border-color: #e65616;
}

.ow-featured-card-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(135deg, #e65616, #ff8c42);
  overflow: hidden;
  position: relative;
}

.ow-featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.ow-featured-card-content {
  padding: 35px;
}

.ow-featured-card-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.ow-featured-card-category {
  font-size: 14px;
  font-weight: 600;
  color: #e65616;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.ow-featured-card-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.ow-featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e65616;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.ow-featured-card-link:hover {
  gap: 12px;
}

.ow-featured-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.ow-featured-card-link:hover svg {
  transform: translateX(3px);
}

/* ================================
   SERVICES SECTION
   ================================ */
.ow-services {
  padding: 140px 5%;
  background: #f8f8f8;
  position: relative;
}

.ow-services-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.ow-services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.ow-services-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ow-services-heading {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
}

.ow-services-heading .black-text {
  color: #000;
  display: block;
}

.ow-services-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.ow-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ow-service-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(230, 86, 22, 0.1);
}

.ow-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e65616;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ow-service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(230, 86, 22, 0.15);
}

.ow-service-item:hover::before {
  transform: scaleX(1);
}

.ow-service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(230, 86, 22, 0.1) 0%, rgba(230, 86, 22, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  transition: all 0.4s ease;
}

.ow-service-item:hover .ow-service-icon {
  background: linear-gradient(135deg, #e65616 0%, #ff8c42 100%);
  transform: scale(1.15) rotate(-10deg);
}

.ow-service-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.ow-service-item:hover h3 {
  color: #e65616;
}

.ow-service-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}

.ow-service-features {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ow-service-features li {
  font-size: 15px;
  color: #555;
  padding-left: 25px;
  position: relative;
}

.ow-service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #e65616;
  font-weight: 700;
}

/* ================================
   PROCESS SECTION
   ================================ */
.ow-process {
  padding: 140px 5%;
  position: relative;
}

.ow-process-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.ow-process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.ow-process-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ow-process-heading {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
}

.ow-process-heading .black-text {
  color: #000;
  display: block;
}

.ow-process-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.ow-process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  position: relative;
}

.ow-process-step {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(230, 86, 22, 0.1);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ow-process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(230, 86, 22, 0.15);
  border-color: #e65616;
}

.ow-process-step-number {
  font-size: 52px;
  font-weight: 900;
  color: #e65616;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.ow-process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.ow-process-step p {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
}

/* ================================
   CASE STUDIES SECTION
   ================================ */
.ow-case-studies {
  padding: 140px 5%;
  background: #ffffff;
  position: relative;
}

.ow-case-studies-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.ow-case-studies-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.ow-case-studies-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ow-case-studies-heading {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
}

.ow-case-studies-heading .black-text {
  color: #000;
  display: block;
}

.ow-case-studies-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}


/* ================================
   RESULTS/STATS SECTION
   ================================ */
.ow-results {
  padding: 140px 5%;
  background: #ffffff;
  position: relative;
}

.ow-results-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.ow-results-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.ow-results-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ow-results-heading {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
}

.ow-results-heading .black-text {
  color: #000;
  display: block;
}

.ow-results-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.ow-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.ow-stat-card {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(230, 86, 22, 0.1);
  position: relative;
  overflow: hidden;
}

.ow-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #e65616;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.ow-stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(230, 86, 22, 0.15);
}

.ow-stat-card:hover::before {
  transform: scaleX(1);
}

.ow-stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #e65616;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

/* Override stat-number styling for Our Work page to match design */
.ow-stat-card .stat-number {
  font-size: 48px;
  font-weight: 900;
  color: #e65616;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.ow-stat-label {
  font-size: 20px;
  font-weight: 700;
  color: black!important;
  margin-bottom: 10px;
}

.ow-stat-description {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* ================================
   INDUSTRIES SECTION
   ================================ */
.ow-industries {
  padding: 140px 5%;
  background: #f8f8f8;
  position: relative;
}

.ow-industries-container {
  width: 90%;
  max-width: 1600px;
  margin: 0 auto;
}

.ow-industries-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.ow-industries-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #e65616;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.ow-industries-heading {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 25px;
}

.ow-industries-heading .black-text {
  color: #000;
  display: block;
}

.ow-industries-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
}

.ow-industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.ow-industry-item {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s ease;
  border: 1px solid rgba(230, 86, 22, 0.1);
  position: relative;
  overflow: hidden;
}

.ow-industry-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(230, 86, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ow-industry-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(230, 86, 22, 0.15);
  border-color: #e65616;
}

.ow-industry-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.ow-industry-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #666;
  position: relative;
  z-index: 1;
}

/* ================================
   RESPONSIVE DESIGN - OUR WORK
   ================================ */
@media (max-width: 1024px) {


  .ow-hero-title {
    font-size: clamp(32px, 6vw, 60px);
  }

  .ow-featured-heading,
  .ow-services-heading,
  .ow-process-heading,
  .ow-case-studies-heading,
  .ow-results-heading,
  .ow-industries-heading {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .ow-hero {
    padding: 150px 5% 80px;
  }

  .ow-featured,
  .ow-services,
  .ow-process,
  .ow-case-studies,
  .ow-results,
  .ow-industries {
    padding: 50px 5%;
  }

  .ow-featured-header,
  .ow-services-header,
  .ow-process-header,
  .ow-case-studies-header,
  .ow-results-header,
  .ow-industries-header {
    margin-bottom: 50px;
  }

  .ow-featured-grid {
    gap: 25px;
  }

  .ow-featured-heading,
  .ow-services-heading,
  .ow-process-heading,
  .ow-case-studies-heading,
  .ow-results-heading,
  .ow-industries-heading {
    font-size: 32px;
  }

  .ow-services-grid,
  .ow-process-timeline,
  .ow-industries-grid {
    gap: 20px;
  }

  .ow-process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .ow-service-item,
  .ow-process-step,
  .ow-industry-item {
    padding: 30px;
  }

  .ow-hero-description {
    font-size: 18px;
  }

  .ow-featured-description,
  .ow-services-description,
  .ow-process-description,
  .ow-case-studies-description,
  .ow-results-description,
  .ow-industries-description {
    font-size: 16px;
  }


  .ow-stats-grid {
    gap: 20px;
  }

  .ow-stat-number {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .ow-hero {
    padding: 120px 5% 60px;
    min-height: auto;
  }

  .ow-hero-title {
    font-size: clamp(24px, 5vw, 40px);
    margin-bottom: 20px;
  }

  .ow-featured,
  .ow-services,
  .ow-process,
  .ow-case-studies,
  .ow-results,
  .ow-industries {
    padding: 60px 5%;
  }

  .ow-featured-grid {
    grid-template-columns: 1fr;
  }

  .ow-featured-heading,
  .ow-services-heading,
  .ow-process-heading,
  .ow-case-studies-heading,
  .ow-results-heading,
  .ow-industries-heading {
    font-size: 28px;
  }

  .ow-featured-header,
  .ow-services-header,
  .ow-process-header,
  .ow-case-studies-header,
  .ow-results-header,
  .ow-industries-header {
    margin-bottom: 40px;
  }

  .ow-featured-description,
  .ow-services-description,
  .ow-process-description,
  .ow-case-studies-description,
  .ow-results-description,
  .ow-industries-description {
    font-size: 15px;
  }

  .ow-hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }


  .ow-service-item,
  .ow-process-step,
  .ow-industry-item,
  .ow-stat-card {
    padding: 25px;
  }

  .ow-stat-number {
    font-size: 32px;
  }

  .ow-process-step-number {
    font-size: 36px;
  }

  .ow-process-timeline {
    grid-template-columns: 1fr;
  }
}


/* Results Section */
.ow-results {
  padding: 100px 40px;
  }

.ow-results-header {
  text-align: center;
  margin-bottom: 60px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

.ow-results-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.ow-results-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-light);
  margin: 0;
}

.ow-results-description {
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  max-width: 600px;
  margin: 20px auto 0;
}

.ow-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}


.ow-stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--color-primary);
}


.ow-stat-label {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Categories Section */


/* CTA Section */

/* Process Section */
.ow-process {
  padding: 100px 40px;
  background: #f8f8f8;
}


.ow-process-step {
  display: flex;
  gap: 32px;
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}


/* Industries Section */
.ow-industries {
  padding: 100px 40px;
  }

.ow-industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ow-industry-item {
  padding: 32px 24px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all var(--transition-base);
  opacity: 0;
  animation: scaleIn 0.8s ease-out forwards;
}

.ow-industry-item:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary);
  background: rgba(230, 86, 22, 0.02);
}

.ow-industry-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 12px;
}

.ow-industry-item p {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.6);
}


/* Responsive Design */
@media (max-width: 1024px) {
  .ow-hero-content {
    padding: 40px;
  }

  .ow-hero-title {
    font-size: 48px;
  }


  .ow-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ow-industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }


  .ow-featured-works,
  .ow-results,
  .ow-categories,
  .ow-process,
}

@media (max-width: 768px) {
  .ow-hero {
    min-height: 80vh;
  }

  .ow-hero-content {
    padding: 30px 20px;
  }

  .ow-hero-title {
    font-size: 36px;
  }

  .ow-hero-description {
    font-size: 16px;
  }


  .ow-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .ow-industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }


  .ow-section-heading,

  .ow-featured-works,
  .ow-results,
  .ow-categories,
  .ow-process,


}

@media (max-width: 480px) {
  .ow-hero-title {
    font-size: 28px;
  }

  .ow-hero-label {
    font-size: 12px;
  }

  .ow-section-label,

  .ow-section-heading,

  .ow-stats-grid {
    grid-template-columns: 1fr;
  }

  .ow-stat-number {
    font-size: 40px;
  }


  .ow-industries-grid {
    grid-template-columns: 1fr;
  }

  .ow-process-step {
    flex-direction: column;
    gap: 16px;
  }

}

/* ============================
   SINGLE POST STYLES
   ============================ */

/* Force solid header on single post pages */
[data-single-post="true"] .site-header {
    background: var(--color-bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.single-post-hero {
    position: relative;
    min-height: 30vh;
    display: flex;
    align-items: flex-end;
    background: #1a1a1e;
    overflow: hidden;
    padding: 0;
}

.single-post-hero .single-post-container {
    max-width: 1000px;
}

.single-post-hero-content {
    color: #ffffff;
}

.single-post-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    flex-wrap: wrap;
}

.single-post-breadcrumbs a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.single-post-breadcrumbs a:hover {
    color: #e65616;
}

.breadcrumb-separator {
    color: rgba(255,255,255,0.3);
}

.breadcrumb-current {
    color: rgba(255,255,255,0.5);
}

.single-post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #ffffff;
}

.single-post-meta-top {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 0;
}

.meta-date,
.meta-reading-time,
.meta-author {
    display: flex;
    align-items: center;
}

.post-category a {
    color: #e65616;
    text-decoration: none;
    font-weight: 600;
}

.post-category a:hover {
    opacity: 0.8;
}

.single-post-hero-image-container {
    width: 100%;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 16px;
}

.single-post-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* Main Article Section */
.single-post-article {
    background: #ffffff;
    position: relative;
    z-index: 3;
    padding-bottom: 20px;
}

.single-post-container {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 40px;
}

.single-post-content {
    font-size: 18px;
    line-height: 1.85;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 80px;
}

.single-post-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 50px 0 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e65616;
    display: inline-block;
}

.single-post-content h2 + * {
    clear: both;
}

.single-post-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 40px 0 18px;
}

.single-post-content p {
    margin-bottom: 24px;
    color: rgba(0, 0, 0, 0.75);
}

.single-post-content a {
    color: #e65616;
    text-decoration: none !important;
    border-bottom: none !important;
    font-weight: 500;
    transition: all 0.3s ease;
}

.single-post-content a:hover {
    color: #ff6a2c;
    text-decoration: none !important;
    border-bottom: none !important;
}

.single-post-content ul,
.single-post-content ol {
    margin: 24px 0 24px 24px;
}

.single-post-content li {
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.75);
}

.single-post-content blockquote {
    margin: 40px 0;
    padding: 30px 30px 30px 40px;
    border-left: 4px solid #e65616;
    background: rgba(230, 86, 22, 0.04);
    border-radius: 0 12px 12px 0;
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.7);
}

.single-post-content blockquote p {
    margin-bottom: 0;
}

.single-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

.single-post-content strong {
    color: var(--color-text-dark, #1a1a1e);
    font-weight: 700;
}

/* Metrics Section */
.single-post-metrics {
    background: linear-gradient(135deg, rgba(230, 86, 22, 0.1) 0%, rgba(255, 122, 58, 0.05) 100%);
    border: 1px solid rgba(230, 86, 22, 0.2);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    margin-bottom: 80px;
}

.metrics-heading {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    align-items: center;
}

.metric-card {
    text-align: center;
}

.metric-value {
    margin-bottom: 16px;
}

.metric-value .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
}

.metric-label {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Post Navigation */
.single-post-navigation {
    margin-bottom: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 20px;
    border: 1px solid rgba(230, 86, 22, 0.2);
    border-radius: var(--border-radius-md);
    transition: all var(--transition-base);
    color: var(--color-text-dark);
}

.nav-item:hover {
    border-color: var(--color-primary);
    background: rgba(230, 86, 22, 0.08);
}

.nav-prev {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-label {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.nav-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Related Posts Section */
.single-post-related {
    background: #1a1a1e;
    padding: 80px 40px;
}

.single-post-related .section-heading {
    margin-bottom: 60px;
    text-align: center;
    color: #ffffff;
}

.single-post-related .section-heading .highlight-text-italic {
    color: #e65616;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.related-card {
    background: #242428;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-card:hover {
    border-color: rgba(230, 86, 22, 0.5);
    background: #2a2a2e;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.related-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.05);
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

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

.related-card-content {
    padding: 24px;
}

.related-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 12px;
    align-items: center;
}

.related-category {
    color: #e65616;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.related-date {
    color: rgba(255, 255, 255, 0.4);
}

.related-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.related-card-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.related-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e65616;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.3s ease;
}

.related-card:hover .related-card-link {
    gap: 12px;
}

.related-card-link svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.related-card:hover .related-card-link svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .single-post-hero {
      padding: 0px;
    }

    .single-post-hero-content {
        width: 100%;
    }

    .single-post-title {
        font-size: 32px;
    }

    .single-post-breadcrumbs {
        font-size: 12px;
        margin-bottom: 24px;
    }

    .single-post-container {
        padding-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .single-post-content {
        font-size: 15px;
    }

    .single-post-metrics {
        padding: 40px 24px;
    }

    .metrics-heading {
        font-size: 24px;
    }

    .metrics-grid {
        gap: 30px;
    }

    .metric-number {
        font-size: 36px;
    }

    .nav-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .single-post-related {
        padding: 60px 24px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .single-post-hero {
        padding: 0px;
    }

    .single-post-hero-content {
        width: 100%;
    }

    .single-post-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .single-post-breadcrumbs {
        font-size: 11px;
        margin-bottom: 20px;
    }

    .single-post-meta-top {
        gap: 12px;
        font-size: 12px;
    }

    .single-post-hero-image-container {
        margin-top: 24px;
    }

    .single-post-container {
        padding-top: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .single-post-metrics {
        padding: 30px 16px;
        margin-bottom: 60px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .metric-number {
        font-size: 28px;
    }

    .single-post-related {
        padding: 40px 16px;
    }
}

/* Animation Classes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

/* ================================
   NEWS PAGE STYLES - LIGHT THEME
   ================================ */

/* ==========================================
   HERO SECTION
   ========================================== */
.news-page-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
 }

.news-page-hero-video,
.news-page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.news-page-hero-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    z-index: 1;
}

.news-page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.news-page-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: var(--spacing-2xl);
    animation-delay: 100ms;
}

.news-page-hero-label {
    display: inline-block;
    font-size: var(--font-size-sm);
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    opacity: 0;
    animation: fadeInDown 0.6s ease-out forwards;
}

.news-page-hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-light);
    opacity: 0;
    animation: fadeInDown 0.6s ease-out 0.1s forwards;
}

.news-page-hero-subheading {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    animation: fadeInDown 0.6s ease-out 0.2s forwards;
}

/* ==========================================
   SEARCH & FILTER SECTION
   ========================================== */
.news-page-controls {
    background: #f8f8f8;
    padding: var(--spacing-3xl) var(--spacing-lg);
    border-bottom: 1px solid #e0e0e0;
    z-index: 50;
}

.news-page-controls-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

/* Search Form */
.news-page-search-form {
    flex: 1;
}

.news-page-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #d0d0d0;
    border-radius: var(--border-radius-lg);
    padding: 0 var(--spacing-lg);
    transition: all var(--transition-base);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.news-page-search-input-wrapper:focus-within {
    background: white;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(230, 86, 22, 0.15);
}

.news-page-search-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #333;
    font-size: var(--font-size-base);
    padding: var(--spacing-md);
    outline: none;
}

.news-page-search-input::placeholder {
    color: #999;
}

.news-page-search-btn {
    background: transparent;
    border: none;
    color: var(--color-primary);
    cursor: pointer;
    padding: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-fast);
}

.news-page-search-btn:hover {
    color: var(--color-primary-hover);
}

/* Category Filter */
.news-page-category-filter {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.news-page-filter-label {
    font-weight: 600;
    color: #333;
    font-size: var(--font-size-sm);
}

.news-page-category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.news-page-category-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: white;
    border: 1px solid #d0d0d0;
    color: #333;
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.news-page-category-btn:hover {
    background: #f0f0f0;
    border-color: var(--color-primary);
}

.news-page-category-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* ==========================================
   FEATURED ARTICLE SECTION
   ========================================== */
.news-page-featured {
    background: white;
    padding: var(--spacing-3xl) var(--spacing-lg);
    border-bottom: 1px solid #e0e0e0;
}

.news-page-featured-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-page-featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.news-page-featured-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    aspect-ratio: 16 / 9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.news-page-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease-out;
}

.news-page-featured-image:hover img {
    transform: scale(1.05);
}

.news-page-featured-badge {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.news-page-featured-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.news-page-featured-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    font-size: var(--font-size-sm);
}

.news-page-featured-category {
    background: rgba(230, 86, 22, 0.1);
    color: var(--color-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-transform: uppercase;
}

.news-page-featured-date {
    color: #666;
}

.news-page-featured-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.3;
    color: #000;
}

.news-page-featured-excerpt {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: #555;
}

.news-page-featured-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: gap var(--transition-fast);
    width: fit-content;
}

.news-page-featured-link:hover {
    gap: var(--spacing-md);
}

.news-page-featured-link svg {
    transition: transform var(--transition-fast);
}

.news-page-featured-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   ARTICLES GRID SECTION
   ========================================== */
.news-page-articles {
    background: #f8f8f8;
    padding: var(--spacing-3xl) var(--spacing-lg);
}

.news-page-articles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.news-page-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-3xl);
}

/* Article Card */
.news-page-article-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.news-page-article-card:hover {
    background: white;
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.news-page-article-image {
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
}

.news-page-article-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-page-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease-out;
}

.news-page-article-card:hover .news-page-article-image img {
    transform: scale(1.08);
}

.news-page-article-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    flex-grow: 1;
}

.news-page-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--font-size-sm);
    gap: var(--spacing-md);
}

.news-page-article-category {
    background: rgba(230, 86, 22, 0.1);
    color: var(--color-primary);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.news-page-article-date {
    color: #999;
}

.news-page-article-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    margin: 0;
}

.news-page-article-title a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.news-page-article-title a:hover {
    color: var(--color-primary);
}

.news-page-article-excerpt {
    color: #666;
    font-size: var(--font-size-sm);
    line-height: 1.6;
    flex-grow: 1;
}

.news-page-article-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: gap var(--transition-fast);
    width: fit-content;
    margin-top: auto;
}

.news-page-article-link:hover {
    gap: var(--spacing-md);
}

.news-page-article-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.news-page-article-link:hover svg {
    transform: translateX(4px);
}

/* ==========================================
   PAGINATION
   ========================================== */
.news-page-pagination {
    display: flex;
    justify-content: center;
    margin-top: var(--spacing-3xl);
}

.news-page-pagination-list {
    display: flex;
    gap: var(--spacing-sm);
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.news-page-pagination-list li {
    display: flex;
}

.news-page-pagination-list a,
.news-page-pagination-list .page-numbers {
    padding: var(--spacing-sm) var(--spacing-md);
    background: white;
    border: 1px solid #d0d0d0;
    color: #333;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    text-align: center;
}

.news-page-pagination-list a:hover {
    background: #f0f0f0;
    border-color: var(--color-primary);
}

.news-page-pagination-list .page-numbers.current {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* ==========================================
   NO RESULTS
   ========================================== */
.news-page-no-results {
    text-align: center;
    padding: var(--spacing-3xl) var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.news-page-no-results svg {
    color: var(--color-primary);
    opacity: 0.7;
}

.news-page-no-results h3 {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-2xl);
    color: #000;
}

.news-page-no-results p {
    color: #666;
    max-width: 500px;
}

.news-page-no-results-btn {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: background var(--transition-fast);
    margin-top: var(--spacing-lg);
}

.news-page-no-results-btn:hover {
    background: var(--color-primary-hover);
}

/* ==========================================
   NEWSLETTER SECTION
   ========================================== */
.news-page-newsletter {
    background: white;
    padding: var(--spacing-3xl) var(--spacing-lg);
    border-top: 2px solid var(--color-primary);
}

.news-page-newsletter-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
    align-items: center;
    text-align: center;
}

.news-page-newsletter-content {
    max-width: 600px;
}

.news-page-newsletter-title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #000;
    margin-bottom: var(--spacing-md);
}

.news-page-newsletter-subtitle {
    font-size: var(--font-size-lg);
    color: #555;
    line-height: 1.6;
}

.news-page-newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 500px;
}

.news-page-newsletter-input {
    flex: 1;
    padding: var(--spacing-md) var(--spacing-lg);
    background: #f8f8f8;
    border: 1px solid #d0d0d0;
    border-radius: var(--border-radius-md);
    color: #333;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
}

.news-page-newsletter-input:focus {
    outline: none;
    background: white;
    border-color: var(--color-primary);
}

.news-page-newsletter-input::placeholder {
    color: #999;
}

.news-page-newsletter-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: background var(--transition-fast);
    white-space: nowrap;
    font-family: var(--font-family);
}

.news-page-newsletter-btn:hover {
    background: var(--color-primary-hover);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .news-page-featured-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .news-page-articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: var(--spacing-xl);
    }

    .news-page-controls-container {
        gap: var(--spacing-xl);
    }
}

@media (max-width: 768px) {
    .news-page-hero {
        height: 50vh;
        min-height: 400px;
    }

    .news-page-hero-heading {
        font-size: clamp(24px, 6vw, 48px);
    }

    .news-page-controls {
        padding: var(--spacing-xl) var(--spacing-md);
        top: 60px;
    }

    .news-page-featured {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .news-page-featured-content {
        gap: var(--spacing-md);
    }

    .news-page-featured-title {
        font-size: clamp(24px, 5vw, 36px);
    }

    .news-page-articles {
        padding: var(--spacing-2xl) var(--spacing-md);
    }

    .news-page-articles-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .news-page-search-form {
        order: 2;
    }

    .news-page-category-filter {
        order: 1;
    }

    .news-page-category-buttons {
        gap: var(--spacing-xs);
    }

    .news-page-category-btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 12px;
    }

    .news-page-newsletter-form {
        flex-direction: column;
    }

    .news-page-newsletter-btn {
        width: 100%;
    }

    .news-page-pagination-list {
        gap: var(--spacing-xs);
    }

    .news-page-pagination-list a,
    .news-page-pagination-list .page-numbers {
        padding: var(--spacing-xs) var(--spacing-sm);
        min-width: 36px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .news-page-hero {
        height: 45vh;
        min-height: 300px;
    }

    .news-page-hero-content {
        padding: var(--spacing-lg);
    }

    .news-page-hero-heading {
        font-size: clamp(20px, 5vw, 32px);
    }

    .news-page-hero-subheading {
        font-size: 14px;
    }

    .news-page-controls {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .news-page-featured-badge {
        top: var(--spacing-md);
        right: var(--spacing-md);
        font-size: 10px;
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .news-page-featured-title {
        font-size: clamp(20px, 4vw, 28px);
    }

    .news-page-featured-excerpt {
        font-size: var(--font-size-sm);
    }

    .news-page-article-title {
        font-size: var(--font-size-lg);
    }

    .news-page-article-content {
        padding: var(--spacing-md);
    }

    .news-page-newsletter-container {
        padding: 0;
    }

    .news-page-newsletter-title {
        font-size: var(--font-size-xl);
    }

    .news-page-newsletter-subtitle {
        font-size: var(--font-size-base);
    }
}

/* ================================
   CAREERS PAGE
   ================================ */

/* Careers Page - Why Join Section */
.careers-why-join {
    background: white;
    padding: 100px 20px;
    text-align: center;
}

.careers-why-join-container {
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.careers-why-join-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
    color: #000;
}

.careers-why-join-heading .highlight {
    font-style: italic;
    color: #e65616;
    display: block;
}

.careers-why-join-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 20px;
}

/* Careers Page - Benefits Section */
.careers-benefits-section {
    background: #f8f8f8;
    padding: 100px 20px;
}

.careers-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.careers-benefits-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 80px;
    text-align: center;
    line-height: 1.2;
    color: #000;
}

.careers-benefits-heading .highlight {
    font-style: italic;
    color: #e65616;
    display: block;
}

.careers-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.careers-benefit-card {
    padding: 40px;
    background: white;
    border-radius: 8px;
    text-align: center;
}

.careers-benefit-icon {
    font-size: 56px;
    margin-bottom: 25px;
    line-height: 1;
    display: block;
}

.careers-benefit-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.careers-benefit-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Careers Page - Opportunities Section */
.careers-opportunities-section {
    background: white;
    padding: 100px 20px;
    text-align: center;
}

.careers-opportunities-container {
    max-width: 1200px;
    margin: 0 auto;
}

.careers-opportunities-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    line-height: 1.2;
    color: #000;
}

.careers-opportunities-heading .highlight {
    font-style: italic;
    color: #e65616;
    display: block;
}

.careers-opportunities-box {
    background: #f8f8f8;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.careers-opportunities-text {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 30px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.careers-cta-button {
    display: inline-block;
    background: #e65616;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(230, 86, 22, 0.4);
}

.careers-cta-button:hover {
    background: #ff7a3a;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(230, 86, 22, 0.5);
}

/* Careers Page - Contact Section */
.careers-contact-section {
    background: #f8f8f8;
    padding: 100px 20px;
}

.careers-contact-container {
    max-width: 600px;
    margin: 0 auto;
}

.careers-contact-heading {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.2;
    color: #000;
}

.careers-contact-heading .highlight {
    font-style: italic;
    color: #e65616;
    display: block;
}

.careers-contact-intro {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.7;
}

.careers-contact-box {
    background: white;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.careers-contact-intro-text {
    font-size: 16px;
    color: #555;
    margin: 0 0 20px 0;
    line-height: 1.7;
}

.careers-contact-item {
    margin: 40px 0;
    border-top: 1px solid #e8e8e8;
    padding-top: 40px;
}

.careers-contact-item:first-child {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.careers-contact-item-label {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 15px;
    display: block;
}

.careers-contact-item-link {
    font-size: 18px;
    font-weight: 600;
    color: #e65616;
    text-decoration: none;
    transition: all 0.3s;
}

.careers-contact-item-link:hover {
    color: #ff7a3a;
}

.careers-contact-item-address {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Careers Page - Responsive */
@media (max-width: 768px) {
    .careers-why-join,
    .careers-opportunities-section {
        padding: 60px 20px;
    }

    .careers-benefits-section,
    .careers-contact-section {
        padding: 60px 20px;
    }

    .careers-why-join-heading,
    .careers-benefits-heading,
    .careers-opportunities-heading,
    .careers-contact-heading {
        font-size: clamp(32px, 6vw, 48px);
        margin-bottom: 30px;
    }

    .careers-benefits-grid {
        gap: 20px;
    }

    .careers-benefit-card {
        padding: 30px;
    }

    .careers-benefit-icon {
        font-size: 48px;
        margin-bottom: 15px;
    }

    .careers-opportunities-box {
        padding: 30px;
    }

    .careers-contact-box {
        padding: 30px;
    }

    .careers-contact-intro {
        margin-bottom: 30px;
    }

    .careers-contact-item {
        margin: 20px 0;
        padding-top: 20px;
    }
}

/* ================================
   POLICY PAGES STYLING
   (PRIVACY POLICY & TERMS & CONDITIONS)
   ================================ */

.policy-page-section {
    background: #ffffff;
    padding: 64px 24px;
    min-height: 100vh;
    
}

.policy-page-container {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
}

.policy-page-content {
    color: #333333;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.policy-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1e;
    padding-top: 32px;
    line-height: 1.2;
}

.policy-page-intro {
    margin-bottom: 48px;
    padding: 24px;
    background: #f8f8f8;
    border-left: 4px solid #e65616;
    border-radius: 8px;
}

.policy-page-intro p {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1e;
    line-height: 1.8;
    margin-bottom: 0;
}

.policy-page-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-top: 64px;
    margin-bottom: 24px;
    color: #1a1a1e;
    line-height: 1.2;
}

.policy-page-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a1a1e;
}

.policy-page-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #666666;
    line-height: 1.8;
}

.policy-page-content a {
    color: #e65616;
    text-decoration: none;
    transition: all 300ms ease-in-out;
    font-weight: 500;
}

.policy-page-content a:hover {
    color: #ff7a3a;
    text-decoration: underline;
}

.policy-list {
    list-style: disc;
    padding-left: 48px;
    margin-bottom: 24px;
}

.policy-list li {
    margin-bottom: 16px;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.policy-list li strong {
    color: #1a1a1e;
    font-weight: 600;
}

.policy-numbered-list {
    list-style: decimal;
    padding-left: 48px;
    margin-bottom: 24px;
}

.policy-numbered-list li {
    margin-bottom: 32px;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.policy-numbered-list li strong {
    color: #1a1a1e;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.policy-numbered-list li br + strong {
    display: inline;
    margin-bottom: 0;
}

/* Policy Pages - Responsive */
@media (max-width: 768px) {
    .policy-page-section {
        padding: 48px 16px;
        margin-top: 80px;
    }

    .policy-page-container {
        width: 100%;
    }

    .policy-page-title {
        font-size: 32px;
        margin-bottom: 24px;
        padding-top: 24px;
    }

    .policy-page-intro {
        margin-bottom: 32px;
        padding: 16px;
    }

    .policy-page-intro p {
        font-size: 16px;
    }

    .policy-page-content h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .policy-page-content h3 {
        font-size: 16px;
        margin-top: 24px;
    }

    .policy-page-content p {
        font-size: 14px;
    }

    .policy-list,
    .policy-numbered-list {
        padding-left: 32px;
    }

    .policy-list li,
    .policy-numbered-list li {
        margin-bottom: 12px;
        font-size: 14px;
    }

    .policy-numbered-list li {
        margin-bottom: 20px;
    }
}

/* ================================
   CASE STUDIES FILTERING SYSTEM
   ================================ */

.ow-case-studies {
  padding: 80px 20px;
  background: #ffffff;
}

.ow-case-studies-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ow-case-studies-header {
  text-align: center;
  margin-bottom: 60px;
}

.ow-case-studies-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e65616;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(230, 86, 22, 0.1);
  border-radius: 4px;
}

.ow-case-studies-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.ow-case-studies-heading .black-text {
  color: #1a1a1a;
}

.ow-case-studies-heading .highlight-text-italic {
  font-style: italic;
  color: #e65616;
}

.ow-case-studies-description {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.ow-case-studies-filters {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.filter-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.filter-subcategory-group {
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #ddd;
  background: #ffffff;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  border-radius: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  border-color: #e65616;
  color: #e65616;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #e65616;
  color: #ffffff;
  border-color: #e65616;
  box-shadow: 0 4px 12px rgba(230, 86, 22, 0.3);
}

.ow-case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.ow-case-study-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ow-case-study-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.case-study-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  overflow: hidden;
  flex-shrink: 0;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ow-case-study-card:hover .case-study-image img {
  transform: scale(1.05);
}

.case-study-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.case-study-meta {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.case-study-service {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e65616;
  padding: 4px 12px;
  background: rgba(230, 86, 22, 0.1);
  border-radius: 16px;
}

.case-study-subcategory {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #666;
  padding: 4px 12px;
  background: #f5f5f5;
  border-radius: 16px;
}

.case-study-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 12px 0;
  line-height: 1.3;
}

.case-study-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e65616;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: auto;
}

.case-study-link:hover {
  gap: 12px;
  color: #d64a0f;
}

.case-study-link svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
  transition: transform 0.3s ease;
}

.case-study-link:hover svg {
  transform: translateX(2px);
}

.no-results-message {
  text-align: center;
  padding: 60px 20px;
  background: #f9f9f9;
  border-radius: 8px;
  margin: 40px 0;
}

.no-results-message p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .ow-case-studies {
    padding: 60px 20px;
  }

  .ow-case-studies-header {
    margin-bottom: 40px;
  }

  .ow-case-studies-heading {
    font-size: 36px;
  }

  .ow-case-studies-description {
    font-size: 16px;
  }

  .filter-group {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .ow-case-studies-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
  }

  .case-study-image {
    height: 180px;
  }

  .case-study-content {
    padding: 20px;
  }

  .case-study-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .ow-case-studies {
    padding: 40px 16px;
  }

  .ow-case-studies-heading {
    font-size: 28px;
  }

  .ow-case-studies-description {
    font-size: 15px;
  }

  .filter-group {
    gap: 6px;
  }

  .filter-btn {
    padding: 6px 12px;
    font-size: 12px;
  }

  .ow-case-studies-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-study-image {
    height: 150px;
  }

  .case-study-content {
    padding: 16px;
  }

  .case-study-content h3 {
    font-size: 18px;
  }

  .case-study-content p {
    font-size: 14px;
  }
}/* ================================
   NEW SERVICES SCROLL SECTION
   ================================ */

.services-scroll-section {
  padding: 160px 5%;
  background: #ffffff;
  position: relative;
  overflow: visible;
}

/* Decorative rectangles - HIDDEN */
.services-scroll-section::before {
  display: none;
}

.services-scroll-section::after {
  display: none;
}

.services-scroll-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.services-scroll-heading {
  font-size: 110px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 160px;
  color: #000;
  line-height: 1.05;
  letter-spacing: -1.5px;
}

.services-scroll-wrapper {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 160px;
  align-items: flex-start;
  min-height: 700px;
  margin-bottom: 60px;
}

/* LEFT SIDEBAR NAVIGATION */
.services-scroll-nav {
  position: relative;
  padding-top: 10px;
}
 
.services-scroll-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}

.services-scroll-item {
  position: relative;
  padding: 0;
  margin: 0;
}

.services-scroll-trigger {
  background: transparent;
  border: none;
  padding: 24px 26px;
  font-size: 30px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all var(--transition-base);
  text-align: left;
  font-family: var(--font-family);
  position: relative;
  display: block;
  width: 100%;
  text-align: left;
  border-radius: 8px;
  border-left: 3px solid transparent;
}

.services-scroll-trigger::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e65616;
  border-radius: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition-base);
}

.services-scroll-item.active .services-scroll-trigger {
  color: #000;
  font-weight: 600;
  background-color: rgba(230, 86, 22, 0.08);
}

.services-scroll-item.active .services-scroll-trigger::before {
  transform: scaleY(1);
}

.services-scroll-trigger:hover {
  color: #000;
  background-color: rgba(0, 0, 0, 0.04);
}

.services-scroll-trigger:hover::before {
  transform: scaleY(1);
}

/* RIGHT CONTENT AREA */
.services-scroll-content-wrapper {
  position: relative;
  min-height: 500px;
}

.services-scroll-content {
  display: none;
  animation: fadeInUp 0.5s ease-in-out;
}

.services-scroll-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-scroll-icon {
  width: 120px;
  max-width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(230, 86, 22, 0.08) 0%, rgba(230, 86, 22, 0.02) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid rgba(230, 86, 22, 0.1);
}

.services-scroll-icon-image {
  width: 120px;
  height: 120px;
  object-fit: cover;
  object-position: center;
  padding: 10px;
}

.services-scroll-icon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  font-weight: 900;
  color: #e65616;
  opacity: 0.15;
  background: linear-gradient(135deg, rgba(230, 86, 22, 0.08) 0%, rgba(230, 86, 22, 0.02) 100%);
}

.services-scroll-text {
  padding-right: 40px;
}

.services-scroll-title {
  font-size: 56px;
  font-weight: 900;
  color: #000;
  margin: 0 0 32px 0;
  line-height: 1.1;
  letter-spacing: -0.7px;
}

.services-scroll-description {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.68);
  margin-bottom: 48px;
}

.services-scroll-description p {
  margin: 0 0 18px 0;
}

.services-scroll-description p:last-child {
  margin-bottom: 0;
}

.services-scroll-description ul,
.services-scroll-description ol {
  margin: 18px 0;
  padding-left: 28px;
  color: rgba(0, 0, 0, 0.68);
}

.services-scroll-description li {
  margin-bottom: 12px;
}

.services-scroll-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  width: 100%;
}

.services-scroll-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  background: #e65616;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition-base);
  border: 2px solid #e65616;
  cursor: pointer;
  width: 100%;
  text-align: center;
}

.services-scroll-link:hover {
  background: #ff7a3a;
  border-color: #ff7a3a;
  transform: translateX(4px);
}

.services-scroll-arrow {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.services-scroll-link:hover .services-scroll-arrow {
  transform: translateX(3px);
}

/* FOOTER BUTTON */
.services-scroll-footer {
  text-align: left;
  margin-top: 40px;
}

.services-scroll-footer-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  background: transparent;
  color: #e65616;
  text-decoration: none;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
}

.services-scroll-footer-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.services-scroll-footer-button:hover {
  color: #ff7a3a;
  background: transparent;
  border: none;
  transform: translateX(4px);
  box-shadow: none;
}

.services-scroll-footer-button:hover .services-scroll-footer-arrow {
  transform: translateX(3px);
}

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

@media (max-width: 1200px) {
  .services-scroll-section {
    padding: 120px 5%;
  }

  .services-scroll-heading {
    font-size: 72px;
    margin-bottom: 100px;
  }

  .services-scroll-wrapper {
    grid-template-columns: 250px 1fr;
    gap: 100px;
    min-height: 600px;
  }

  .services-scroll-text {
    padding-right: 20px;
  }

  .services-scroll-title {
    font-size: 44px;
  }

  .services-scroll-icon {
    max-width:120px;
    height: 120px;
    margin-bottom: 40px;
  }

  .services-scroll-description {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .services-scroll-section {
    padding: 90px 5%;
  }

  .services-scroll-heading {
    font-size: 52px;
    margin-bottom: 90px;
  }

  .services-scroll-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    min-height: auto;
  }

  .services-scroll-nav {
    position: relative;
    padding-top: 0;
    order: 1;
  }

  .services-scroll-list {
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 12px;
  }

  .services-scroll-item {
    white-space: normal;
    flex-shrink: 0;
    flex-basis: calc(50% - 5px);
  }

  .services-scroll-trigger {
    font-size: 13px;
    padding: 12px 14px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 100%;
    white-space: normal;
    line-height: 1.3;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .services-scroll-trigger::before {
    display: none;
  }

  .services-scroll-item.active .services-scroll-trigger {
    background: #e65616;
    color: white;
    border-color: #e65616;
  }

  .services-scroll-item.active .services-scroll-trigger::before {
    display: none;
  }

  .services-scroll-content-wrapper {
    min-height: auto;
    order: 2;
  }

  .services-scroll-icon {
    max-width: 120px;
    height: 120px;
    margin-bottom: 32px;
  }

  .services-scroll-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .services-scroll-description {
    font-size: 16px;
    margin-bottom: 40px;
    color: rgba(0, 0, 0, 0.65);
  }

  .services-scroll-text {
    padding-right: 0;
  }

  .services-scroll-link {
    padding: 12px 22px;
    font-size: 14px;
    gap: 6px;
  }

  .services-scroll-footer {
    margin-top: 30px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-scroll-section {
    padding: 70px 5%;
  }

  .services-scroll-heading {
    font-size: 36px;
    margin-bottom: 60px;
  }

  .services-scroll-trigger {
    font-size: 12px;
    padding: 11px 12px;
    min-height: 50px;
  }

  .services-scroll-item {
    flex-basis: calc(50% - 5px);
  }

  .services-scroll-icon {
    max-width: 120px;
    height: 120px;
    margin-bottom: 28px;
  }

  .services-scroll-icon-placeholder {
    font-size: 80px;
  }

  .services-scroll-title {
    font-size: 26px;
    margin-bottom: 16px;
  }

  .services-scroll-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 26px;
  }

  .services-scroll-link {
    padding: 11px 18px;
    font-size: 13px;
    gap: 5px;
  }

  .services-scroll-arrow {
    width: 14px;
    height: 14px;
  }
}

/* ================================
   SCROLL REVEAL ANIMATION
   ================================ */

.services-scroll-icon,
.services-scroll-title,
.services-scroll-description {
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}

.services-scroll-icon {
  animation-delay: 0s;
}

.services-scroll-title {
  animation-delay: 0.1s;
}

.services-scroll-description {
  animation-delay: 0.2s;
}

.services-scroll-link {
  animation: fadeInUp 0.6s ease-out 0.3s forwards;
  opacity: 0;
}
/* =============================================
   HP SERVICES SECTION (Home Page - duplicated from wwd-services)
   ============================================= */
.hp-services {
  padding: 100px 0;
  background: #f8f8f8;
}

.hp-services-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
}

.hp-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.hp-services-label {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(230, 86, 22, 0.1);
  border-radius: 50px;
  color: #e65616;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hp-services-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hp-services-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Tabs */
.hp-services-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hp-services-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: center;
  flex-wrap: wrap;
}

.hp-services-tabs::-webkit-scrollbar {
  display: none;
}

.hp-service-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: #ffffff;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hp-service-tab:hover {
  background: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hp-service-tab.active {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 10px rgba(230, 86, 22, 0.3);
}

.hp-tab-icon {
  width: 24px;
  height: 24px;
}

.hp-tab-icon svg {
  width: 100%;
  height: 100%;
}

.hp-service-tab.active .hp-tab-icon svg {
  stroke: #fff;
}

.hp-tab-title {
  font-size: 14px;
  font-weight: 600;
}

/* Service Panels */
.hp-services-panels {
  position: relative;
  display: grid;
}

.hp-service-panel {
  position: relative;
  top: auto;
  left: auto;
  width: 100%;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  border-radius: 30px;
  padding: 50px;
  border: 1px solid #eee;
}

.hp-service-panel:not(.active) {
  display: none;
}

.hp-service-panel.active {
  opacity: 1;
  visibility: visible;
  transform: none;
  z-index: 1;
  display: grid;
}

.hp-service-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.hp-service-panel-icon {
  width: 70px;
  height: 70px;
  background: var(--accent);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.25);
}

.hp-service-panel-icon svg {
  width: 35px;
  height: 35px;
  stroke: #fff;
}

.hp-service-panel-number {
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  line-height: 1;
}

.hp-service-panel h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.hp-service-short {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.hp-service-long {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.hp-service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}

.hp-service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #444;
}

.hp-service-features svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

.hp-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(230, 86, 22, 0.25);
}

.hp-service-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(230, 86, 22, 0.35);
}

.hp-service-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hp-service-btn:hover svg {
  transform: translateX(5px);
}

/* Service Panel Visual */
.hp-service-panel-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hp-service-panel-graphic {
  position: relative;
  width: 350px;
  height: 350px;
}

.hp-service-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: hpCirclePulse 4s ease-in-out infinite;
}

.hp-service-circle-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.2;
  animation-delay: 0s;
}

.hp-service-circle-2 {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  opacity: 0.4;
  animation-delay: 0.5s;
}

.hp-service-circle-3 {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  opacity: 0.6;
  animation-delay: 1s;
}

.hp-service-icon-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 50px rgba(230, 86, 22, 0.4);
  animation: hpIconPulse 3s ease-in-out infinite;
}

.hp-service-icon-large svg {
  width: 50px;
  height: 50px;
  stroke: #fff;
}

@keyframes hpCirclePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.4;
  }
}

@keyframes hpIconPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* HP SERVICES RESPONSIVE */
@media (max-width: 992px) {
  .hp-services-tabs {
    justify-content: flex-start;
  }

  .hp-services-panels {
    min-height: auto;
  }

  .hp-service-panel {
    padding: 30px;
  }

  .hp-services-header {
    text-align: center !important;
  }

  .hp-services-header h2 {
    text-align: center !important;
  }

  .hp-services-header p {
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .hp-services {
    padding: 50px 0;
  }

  .hp-services-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    padding: 10px;
    margin: 0 -5%;
    padding-left: 5%;
    padding-right: 5%;
  }

  .hp-service-tab {
    padding: 12px 18px;
  }

  .hp-tab-title {
    font-size: 13px;
  }

  .hp-service-panel {
    padding: 25px 20px;
    border-radius: 20px;
    grid-template-columns: 1fr;
  }

  .hp-service-panel-visual {
    display: none;
  }

  .hp-services-panels {
    min-height: auto;
    margin: 0;
  }

  .hp-service-panel h3 {
    font-size: 1.6rem;
  }

  .hp-service-panel-graphic {
    width: 220px;
    height: 220px;
  }
}

/* ============================================
   GLOBAL HERO IMPROVEMENTS
   Pill labels, particles, and button styling
   matching the careers page design
   ============================================ */

/* --- Universal Hero Particles (CSS-based) --- */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero-particles::before,
.hero-particles::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(230, 86, 22, 0.6);
  border-radius: 50%;
  animation: heroParticleFloat 20s linear infinite;
}

.hero-particles::before {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-particles::after {
  top: 60%;
  right: 15%;
  animation-delay: -10s;
}

@keyframes heroParticleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

/* --- Universal Pill Label for All Hero Sections --- */
.hero-label,
.seo-page-hero-label,
.ppc-page-hero-label,
.webdesign-page-hero-label,
.webdev-page-hero-label,
.email-page-hero-label,
.auto-page-hero-label,
.ds-page-hero-label,
.cro-page-hero-label,
.about-hero-label,
.wwa-hero-label,
.wwd-hero-label,
.casestudies-page-hero-label,
.contact-hero-label,
.news-page-hero-label,
.testimonials-page-hero-label,
.mtt-hero-label,
.ow-hero-label,
.single-post-hero-label {
  display: inline-block !important;
  padding: 10px 24px !important;
  background: rgba(230, 86, 22, 0.15) !important;
  border: 1px solid rgba(230, 86, 22, 0.4) !important;
  border-radius: 50px !important;
  color: #e65616 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 30px !important;
  animation: wwdLabelPulse 2s ease-in-out infinite;
}


/* ============================================
   HOMEPAGE HERO UPDATES
   ============================================ */

.hero {
  position: relative;
}

.hero-label {
  position: relative;
  z-index: 5;
}

.hero-heading-mobile {
  display: none;
}

.hero-heading-desktop {
  display: block;
}

@media (max-width: 768px) {
  .hero-heading-desktop {
    display: none !important;
  }
  .hero-heading-mobile {
    display: block !important;
    font-size: clamp(28px, 8vw, 50px) !important;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
    white-space: normal;
    text-align: center;
  }
  .hero-heading-mobile .hero-mobile-orange {
    color: #e65616;
    font-style: italic;
    display: block;
    margin-bottom: -25px;
  }
  .hero-heading-mobile .hero-mobile-white {
    color: #ffffff;
    font-style: normal;
    display: block;
    margin-bottom: -25px;
  }
}

/* Homepage hero buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 5;
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.hero-cta-btn-primary {
  background: #e65616;
  color: #fff;
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.4);
}

.hero-cta-btn-primary:hover {
  background: #ff6a2c;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 86, 22, 0.5);
  color: #fff;
}

.hero-cta-btn-primary svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-cta-btn-primary:hover svg {
  transform: translateX(5px);
}

.hero-cta-btn-secondary {
  background: transparent;
  color: #e65616;
  border: 2px solid #e65616;
}

.hero-cta-btn-secondary:hover {
  background: rgba(230, 86, 22, 0.1);
  border-color: #ff6a2c;
  transform: translateY(-3px);
  color: #ff6a2c;
}

/* Remove old hero-cta-btn split button styles that conflict */
.hero-buttons .hero-cta-btn {
  margin-bottom: 0;
  overflow: visible;
  padding: 18px 40px;
}


/* ============================================
   SINGLE POST / CASE STUDY REDESIGN
   ============================================ */

/* Dark hero banner */
.single-post-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  background: #1a1a1e;
  overflow: hidden;
  padding: 0;
}

.single-post-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.single-post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,30,0.95) 0%, rgba(26,26,30,0.85) 50%, rgba(26,26,30,0.95) 100%);
  z-index: 2;
}

.single-post-hero-inner {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 160px 0 160px;
}

.single-post-hero .single-post-hero-content {
  color: #ffffff;
}

.single-post-hero .single-post-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  flex-wrap: wrap;
}

.single-post-hero .single-post-breadcrumbs a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-post-hero .single-post-breadcrumbs a:hover {
  color: #e65616;
}

.single-post-hero .breadcrumb-separator {
  color: rgba(255,255,255,0.3);
}

.single-post-hero .breadcrumb-current {
  color: rgba(255,255,255,0.5);
}

.single-post-hero-label {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(230, 86, 22, 0.15);
  border: 1px solid rgba(230, 86, 22, 0.4);
  border-radius: 50px;
  color: #e65616;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.single-post-hero .single-post-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  color: #ffffff;
}

.single-post-hero .single-post-meta-top {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0;
}

.single-post-hero .single-post-meta-top svg {
  vertical-align: middle;
  margin-right: 6px;
  opacity: 0.6;
}

.single-post-hero .meta-date,
.single-post-hero .meta-reading-time {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.7);
}

.post-category-pill a {
  display: inline-block;
  padding: 4px 14px;
  background: rgba(230, 86, 22, 0.15);
  border: 1px solid rgba(230, 86, 22, 0.3);
  border-radius: 20px;
  color: #e65616;
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.post-category-pill a:hover {
  background: rgba(230, 86, 22, 0.25);
}

/* Featured image - overlapping the hero */
.single-post-featured-image-wrapper {
  background: #ffffff;
  position: relative;
  z-index: 5;
  padding: 5% 0% 3%;
}

.single-post-featured-image-container {
  max-width: 1000px;
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.single-post-featured-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Metrics bar (for case studies) */
.single-post-metrics-bar {
  background: #f8f8f8;
  padding: 50px 5%;
}

.single-post-metrics-bar .single-post-container {
  padding-top: 0;
}

.metrics-bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.metrics-bar-item {
  text-align: center;
  position: relative;
}

.metrics-bar-item::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(255,255,255,0.1);
}

.metrics-bar-item:last-child::after {
  display: none;
}

.metrics-bar-value .stat-number {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #e65616;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.metrics-bar-label {
  font-size: 13px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* Article content */
.single-post-article {
  background: #ffffff;
  position: relative;
  z-index: 3;
  padding-bottom: 20px;
}

.single-post-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 5% 0;
}

.single-post-content {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.75);
  margin-bottom: 60px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.single-post-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1e;
  margin: 48px 0 20px;
  font-family: 'Playfair Display', serif;
  position: relative;
  padding-bottom: 12px;
}

.single-post-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1e;
  margin: 36px 0 16px;
}

.single-post-content p {
  margin-bottom: 22px;
  color: rgba(0, 0, 0, 0.75);
}

.single-post-content a {
  color: #e65616;
  text-decoration: none !important;
  border-bottom: none !important;
  transition: all 0.3s ease;
}

.single-post-content a:hover {
  color: #ff6a2c;
  text-decoration: none !important;
  border-bottom: none !important;
}

.single-post-content ul,
.single-post-content ol {
  margin: 24px 0 24px 24px;
}

.single-post-content li {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.75);
  padding-left: 4px;
}

.single-post-content img {
  border-radius: 12px;
  margin: 32px 0;
}

.single-post-content blockquote {
  border-left: 4px solid #e65616;
  margin: 40px 0;
  padding: 24px 30px;
  background: rgba(230, 86, 22, 0.04);
  border-radius: 0 12px 12px 0;
  font-size: 18px;
  font-style: italic;
  color: #1a1a1e;
  line-height: 1.7;
}

/* Post Navigation */
.single-post-navigation {
  margin-bottom: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 24px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
  color: #1a1a1e;
  background: #fafafa;
}

.nav-item:hover {
  border-color: #e65616;
  background: rgba(230, 86, 22, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.nav-prev {
  text-align: left;
}

.nav-next {
  text-align: right;
}

.nav-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-label svg {
  opacity: 0.5;
}

.nav-title {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1e;
  line-height: 1.4;
}

/* Related Posts */
.single-post-related {
  background: #f8f8f8;
  padding: 50px 5%;
  border-top: none;
}

.single-post-related .section-heading {
  margin-bottom: 50px;
  text-align: center;
  color: #1a1a1e;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.related-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  border-color: #e65616;
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.03);
}

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

.related-card:hover .related-card-image img {
  transform: scale(1.06);
}

.related-card-content {
  padding: 28px;
}

.related-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 12px;
  align-items: center;
}

.related-category {
  color: #e65616;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.related-date {
  color: rgba(0, 0, 0, 0.4);
}

.related-card-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1e;
  margin-bottom: 10px;
  line-height: 1.35;
}

.related-card-content p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 18px;
  line-height: 1.65;
}

.related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e65616;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
}

.related-card:hover .related-card-link {
  gap: 12px;
}

.related-card-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.related-card:hover .related-card-link svg {
  transform: translateX(4px);
}

/* Single post responsive */
@media (max-width: 768px) {
  .single-post-hero {
    min-height: 40vh;
  }

  .single-post-hero-inner {
    padding: 70px 0 70px;
  }

  .single-post-featured-image-wrapper {
    padding: 10% 5% 5%;
  }

  .single-post-hero .single-post-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .single-post-featured-image-container {
    margin-top: -20px;
    border-radius: 12px;
  }

  .single-post-container {
    padding: 30px 5% 0;
  }

  .single-post-content {
    font-size: 16px;
  }

  .nav-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .metrics-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .metrics-bar-item::after {
    display: none;
  }

  .single-post-metrics-bar {
    padding: 40px 5%;
  }
}


/* ============================================
   POLICY PAGE HERO
   ============================================ */

.policy-page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1e;
  overflow: hidden;
}

.policy-page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.policy-page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,30,0.95) 0%, rgba(26,26,30,0.85) 50%, rgba(26,26,30,0.95) 100%);
  z-index: 2;
}

.policy-page-hero-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 0 60px;
  text-align: center;
}

.policy-page-hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  font-family: 'Playfair Display', serif;
}

/* Remove old policy title since hero now handles it */
.policy-page-hero + .policy-page-section .policy-page-title {
  display: none;
}

/* Adjust policy section when hero is present */
.policy-page-hero + .policy-page-section {
  padding-top: 48px;
}

@media (max-width: 768px) {
  .policy-page-hero {
    min-height: 35vh;
  }
  .policy-page-hero-content {
    padding: 140px 0 40px;
  }
}


/* ============================================
   CASE STUDY CARD CLICKABLE STYLES
   ============================================ */

a.case-study-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.case-study-card-link h3,
a.case-study-card-link p {
  color: inherit;
}

a.case-study-card-link .stat-number {
  color: #e65616;
}

a.case-study-card-link .stat-label {
  color: #666;
}

a.case-study-card-link h3 {
  color: var(--color-text-dark, #1a1a1e);
}

a.case-study-card-link p {
  color: rgba(0,0,0,0.6);
}

a.case-study-card-link .case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e65616;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s ease;
}

a.case-study-card-link:hover .case-study-link {
  gap: 10px;
}

/* ============================================
   ALL CLICKABLE CARD STYLES
   ============================================ */

/* News cards (news-section.php, index.php) */
a.news-card-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.news-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

a.news-card-link h3 {
  color: var(--color-text-dark, #1a1a1e);
}

a.news-card-link p {
  color: rgba(0,0,0,0.6);
}

.news-card-link-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e65616;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s ease;
}

a.news-card-link:hover .news-card-link-text {
  gap: 10px;
}

/* News page article cards */
a.news-page-article-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.news-page-article-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

a.news-page-article-card-link h3 {
  color: var(--color-text-dark, #1a1a1e);
}

a.news-page-article-card-link p {
  color: rgba(0,0,0,0.6);
}

a.news-page-article-card-link .news-page-article-title {
  color: var(--color-text-dark, #1a1a1e);
}

a.news-page-article-card-link .news-page-article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e65616;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s ease;
}

a.news-page-article-card-link:hover .news-page-article-link {
  gap: 10px;
}

/* Our Work case study cards */
a.ow-case-study-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.ow-case-study-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

a.ow-case-study-card-link h3 {
  color: var(--color-text-dark, #1a1a1e);
}

a.ow-case-study-card-link p {
  color: rgba(0,0,0,0.6);
}


a.ow-case-study-card-link .case-study-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e65616;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s ease;
}

a.ow-case-study-card-link:hover .case-study-link {
  gap: 10px;
}

/* Our Work featured cards */
a.ow-featured-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.ow-featured-card-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

a.ow-featured-card-link h3 {
  color: var(--color-text-dark, #1a1a1e);
}

a.ow-featured-card-link p {
  color: rgba(0,0,0,0.6);
}


.ow-featured-card-link-text {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e65616;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s ease;
}

a.ow-featured-card-link:hover .ow-featured-card-link-text {
  gap: 10px;
}

/* Case Studies page featured cards */
a.casestudies-page-featured-card-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.casestudies-page-featured-card-link *,
a.casestudies-page-featured-card-link:hover * {
  text-decoration: none;
}

a.casestudies-page-featured-card-link:hover {
  text-decoration: none;
}

a.casestudies-page-featured-card-link h3 {
  color: var(--color-text-dark, #1a1a1e);
}

a.casestudies-page-featured-card-link p {
  color: rgba(0,0,0,0.6);
}


a.casestudies-page-featured-card-link .casestudies-page-featured-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e65616;
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s ease;
}

a.casestudies-page-featured-card-link:hover .casestudies-page-featured-link {
  gap: 10px;
}

a.casestudies-page-featured-card-link .casestudies-page-featured-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}


/* ============================================
   CAREERS OPPORTUNITIES STYLING
   ============================================ */

.careers-opportunities-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.careers-opportunity-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
}

.careers-opportunity-card:hover {
  border-color: rgba(230, 86, 22, 0.3);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.careers-opportunity-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
}

.careers-opportunity-info {
  flex: 1;
}

.careers-opportunity-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1e;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.careers-opportunity-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.careers-opportunity-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(230, 86, 22, 0.1);
  border: 1px solid rgba(230, 86, 22, 0.25);
  border-radius: 20px;
  color: #e65616;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.careers-opportunity-location,
.careers-opportunity-type {
  font-size: 14px;
  color: rgba(0,0,0,0.5);
  display: inline-flex;
  align-items: center;
}

.careers-opportunity-location::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  margin-right: 12px;
}

.careers-opportunity-type::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0,0,0,0.25);
  margin-right: 12px;
}

.careers-opportunity-apply-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #e65616;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(230, 86, 22, 0.3);
}

.careers-opportunity-apply-btn:hover {
  background: #ff6a2c;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 86, 22, 0.4);
}

.careers-opportunity-description {
  font-size: 15px;
  color: rgba(0,0,0,0.6);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 640px) {
  .careers-opportunity-header {
    flex-direction: column;
  }
  .careers-opportunity-apply-btn {
    align-self: flex-start;
  }
  .careers-opportunity-card {
    padding: 24px;
  }
}


/* ============================================
   SERVICE PAGE HERO BUTTON UPDATES
   Match careers page button styling
   ============================================ */

/* Common CTA button used in service page heroes */
.seo-page-hero .cta-btn,
.ppc-page-hero .cta-btn,
.webdesign-page-hero .cta-btn,
.webdev-page-hero .cta-btn,
.email-page-hero .cta-btn,
.auto-page-hero .cta-btn,
.ds-page-hero .cta-btn,
.cro-page-hero .cta-btn,
.about-hero .cta-btn,
.wwa-hero .cta-btn,
.wwd-hero .cta-btn,
.casestudies-page-hero-btn,
.contact-hero .cta-btn,
.news-page-hero .cta-btn,
.testimonials-page-hero-cta,
.mtt-hero .cta-btn,
.ow-hero .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  background: #e65616;
  color: #fff;
  box-shadow: 0 10px 30px rgba(230, 86, 22, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.seo-page-hero .cta-btn:hover,
.ppc-page-hero .cta-btn:hover,
.webdesign-page-hero .cta-btn:hover,
.webdev-page-hero .cta-btn:hover,
.email-page-hero .cta-btn:hover,
.auto-page-hero .cta-btn:hover,
.ds-page-hero .cta-btn:hover,
.cro-page-hero .cta-btn:hover,
.about-hero .cta-btn:hover,
.wwa-hero .cta-btn:hover,
.wwd-hero .cta-btn:hover,
.casestudies-page-hero-btn:hover,
.contact-hero .cta-btn:hover,
.news-page-hero .cta-btn:hover,
.testimonials-page-hero-cta:hover,
.mtt-hero .cta-btn:hover,
.ow-hero .cta-btn:hover {
  background: #ff6a2c;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(230, 86, 22, 0.5);
  color: #fff;
}

/* ============================================
   GLOBAL LINK UNDERLINE OVERRIDE
   Overrides WordPress 6.x global styles that
   add text-decoration: underline to content links
   ============================================ */
.single-post-content a,
.single-post-content a:hover,
.single-post-content a:visited,
.single-post-content a:focus,
.single-post-content a:active,
.single-post-article a,
.single-post-article a:hover,
.single-post-article a:visited,
.single-post-article a:focus,
.single-post-article a:active,
article.single-post-article .single-post-content a,
article.single-post-article .single-post-content a:hover,
.wp-site-blocks .single-post-content a,
.wp-site-blocks .single-post-content a:hover {
  text-decoration: none !important;
  text-decoration-line: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background-image: none !important;
}
@media (max-width: 768px) {
.fp-info1-section, .fp-info2-section {
  padding: 50px 0;
}
}
/* =====================================================
   CONTACT FORM 50/50 FIX - MASTER OVERRIDE
   ===================================================== */
section.contact-form-section .contact-form-container {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 50px !important;
  max-width: 1400px !important;
  width: 90% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  align-items: start !important;
}

section.contact-form-section .contact-sidebar {
  min-width: 0 !important;
  overflow: hidden !important;
}

section.contact-form-section .contact-form-card {
  min-width: 0 !important;
  overflow: hidden !important;
}

section.contact-form-section .contact-sidebar-logo {
  max-width: 200px !important;
  width: 200px !important;
  height: auto !important;
  margin: 0 auto;
}

@media (max-width: 992px) {
  section.contact-form-section .contact-form-container {
    grid-template-columns: 1fr !important;
    width: 95% !important;
    gap: 30px !important;
  }
}

@media (max-width: 768px) {
  section.contact-form-section .contact-form-container {
    display: block !important;
    width: 100% !important;
    padding: 0 20px !important;
  }
}

/* =====================================================
   CASE STUDY: IMAGE + METRICS 50/50 LAYOUT
   ===================================================== */
.single-post-image-metrics-wrapper {
  background: #ffffff;
  padding: 5% 5% 3%;
  position: relative;
  z-index: 5;
}

.single-post-image-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.single-post-featured-image-col .single-post-featured-image-container {
  margin: 0;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.single-post-featured-image-col .single-post-featured-image {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

.single-post-metrics-col {
  padding: 20px 0;
}

.single-post-metrics-col .metrics-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 100%;
  margin: 0;
}

.single-post-metrics-col .metrics-bar-item {
  text-align: left;
  position: relative;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}  

.single-post-metrics-col .metrics-bar-item::after {
  display: none;
}

.single-post-metrics-col .metrics-bar-value .stat-number {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.single-post-metrics-col .metrics-bar-label {
  text-align: left;
}

@media (max-width: 992px) {
  .single-post-image-metrics-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .single-post-metrics-col .metrics-bar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .single-post-metrics-col .metrics-bar-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   CASE STUDY HERO: SUBTITLE (SHORT DESCRIPTION)
   ===================================================== */
.single-post-subtitle {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 20px;
  max-width: 800px;
  font-style: italic;
}

@media (max-width: 768px) {
  .single-post-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
}

/* ============================================
   404 PAGE
   ============================================ */

/* --- Hero --- */
.error-404-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1e;
  overflow: hidden;
}

.error-404-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.error-404-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,30,0.95) 0%, rgba(26,26,30,0.85) 50%, rgba(26,26,30,0.95) 100%);
  z-index: 2;
}

.error-404-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.error-404-hero-content {
  position: relative;
  z-index: 10;
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 0 60px;
  text-align: center;
}

.error-404-hero-text h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.error-404-hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Body / Links Section --- */
.error-404-body {
  padding: 80px 0;
  background: #ffffff;
}

.error-404-body-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.error-404-body-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a1a1e;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
  text-align: center;
}

.error-404-body-text {
  font-size: 1.05rem;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.6;
}

.error-404-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.error-404-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #f8f8f8;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.error-404-link:hover {
  border-color: rgba(230, 86, 22, 0.3);
  background: #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.error-404-link-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 86, 22, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.error-404-link:hover .error-404-link-icon {
  background: rgba(230, 86, 22, 0.15);
}

.error-404-link-icon svg {
  width: 22px;
  height: 22px;
  color: #e65616;
}

.error-404-link-text {
  flex: 1;
  min-width: 0;
}

.error-404-link-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1e;
  margin: 0 0 4px;
  transition: color 0.3s ease;
}

.error-404-link:hover .error-404-link-text h4 {
  color: #e65616;
}

.error-404-link-text p {
  font-size: 0.875rem;
  color: #777;
  margin: 0;
  line-height: 1.4;
}

.error-404-link-arrow {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #ccc;
  transition: all 0.3s ease;
}

.error-404-link:hover .error-404-link-arrow {
  color: #e65616;
  transform: translateX(4px);
}

/* --- 404 Responsive --- */
@media (max-width: 768px) {
  .error-404-hero {
    min-height: 38vh;
  }
  .error-404-hero-content {
    padding: 140px 0 40px;
  }
  .error-404-links {
    grid-template-columns: 1fr;
  }
  .error-404-body {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .error-404-link {
    padding: 18px;
    gap: 12px;
  }
  .error-404-link-icon {
    width: 40px;
    height: 40px;
  }
  .error-404-link-icon svg {
    width: 18px;
    height: 18px;
  }
}