/********** Template CSS **********/
:root {
    --primary: #0c9f15;
    --light: #39ff072b;
    --dark: #0c9f15;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: 0.5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #ffffff;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
   font-family: "PT Sans Narrow", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #eeeeee;
    }
}

.navbar .navbar-brand,
.navbar a.btn {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: 0.5s;
        opacity: 1;
    }
}

/*** Header ***/
/* ============================================
   GANALYTICS HEADER - NEW MODERN DESIGN
   ============================================ */
.ganalytics-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ganalytics-header.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.ganalytics-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
  gap: 40px;
}

.ganalytics-header-logo {
  flex-shrink: 0;
}

.ganalytics-header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ganalytics-header-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.ganalytics-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
  color: white;
}

.ganalytics-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.ganalytics-logo:hover {
  transform: scale(1.05);
}


.ganalytics-logo-text {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.ganalytics-nav {
  display: flex;
  align-items: center;
  gap: 45px;
}

.ganalytics-nav-item {
  position: relative;
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  padding: 10px 0;
}

.ganalytics-nav-item:hover,
.ganalytics-nav-item.active {
  color: #667eea;
}

.ganalytics-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px 3px 0 0;
}

.ganalytics-nav-dropdown {
  position: relative;
}

.ganalytics-nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ganalytics-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.ganalytics-nav-dropdown:hover .ganalytics-nav-dropdown-menu,
.ganalytics-nav-dropdown.active .ganalytics-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ganalytics-nav-dropdown-link {
  display: block;
  padding: 12px 25px;
  color: #2d3748;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.ganalytics-nav-dropdown-link:hover {
  background: #f7fafc;
  color: #667eea;
  padding-left: 30px;
}

.ganalytics-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: rgba(15, 23, 42, 0.06);
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 999px;
}

.ganalytics-mobile-toggle span {
  width: 28px;
  height: 3px;
  background: #111827;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.ganalytics-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.ganalytics-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.ganalytics-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Dropdown Styles */
.ganalytics-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}
.ganalytics-dropdown-toggle {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ganalytics-dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}
.ganalytics-dropdown.active .ganalytics-dropdown-toggle i {
  transform: rotate(180deg);
}
.ganalytics-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #4d1a1a;
  min-width: 200px;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 10px;
  z-index: 1001;
}
.ganalytics-dropdown.active .ganalytics-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ganalytics-dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #f8f3e0;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.ganalytics-dropdown-item:hover {
  background-color: #5d2a2a;
  color: #ffe45c;
  border-left-color: #ffe45c;
  padding-left: 25px;
}

.ganalytics-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
/* old alternate menu toggle (unused on current header) */
.ganalytics-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #667eea;
  display: block;
  transition: all 0.3s ease;
}
.ganalytics-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}
.ganalytics-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.ganalytics-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .ganalytics-navigation {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.18);
    z-index: 1000;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .ganalytics-navigation.show {
    display: flex;
  }
  .ganalytics-menu-toggle {
    display: flex;
  }
  .ganalytics-nav-link {
    padding: 12px 0;
    width: 100%;
    justify-content: space-between;
  }
  .ganalytics-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .ganalytics-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
  }
  .ganalytics-dropdown-toggle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(241, 210, 75, 0.2);
  }
  .ganalytics-dropdown.active .ganalytics-dropdown-toggle {
    color: #ffe45c;
  }
  .ganalytics-dropdown.active .ganalytics-dropdown-toggle::after {
    background: rgba(241, 210, 75, 0.5);
  }
  .ganalytics-dropdown-menu {
    position: static;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: none;
    margin-top: 0;
    margin-left: 0;
    padding: 0;
    box-shadow: none;
    background-color: rgba(77, 26, 26, 0.5);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    min-width: auto;
    border: 1px solid transparent;
  }
  .ganalytics-dropdown.active .ganalytics-dropdown-menu {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    margin-top: 10px;
    padding: 10px 0;
    transform: none;
    border-color: rgba(241, 210, 75, 0.3);
  }
  .ganalytics-dropdown-item {
    padding: 12px 20px;
    border-left: none;
    border-bottom: 1px solid rgba(241, 210, 75, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .ganalytics-dropdown-item::before {
    content: '→';
    color: rgba(241, 210, 75, 0.5);
    transition: all 0.3s ease;
  }
  .ganalytics-dropdown-item:last-child {
    border-bottom: none;
  }
  .ganalytics-dropdown-item:hover,
  .ganalytics-dropdown-item:active {
    padding-left: 25px;
    background-color: rgba(93, 42, 42, 0.5);
    color: #ffe45c;
  }
  .ganalytics-dropdown-item:hover::before,
  .ganalytics-dropdown-item:active::before {
    color: #ffe45c;
    transform: translateX(5px);
  }
}

/*** Service ***/
/* New Services Section */
.ganalytics-services-new {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-services-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.services-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

@keyframes patternMove {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

.ganalytics-services-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.services-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #667eea;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ganalytics-services-title-new {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f8f3e0;
}

.title-part-1,
.title-part-3 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.title-part-2 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 224, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

.ganalytics-services-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.ganalytics-service-card-new {
  position: relative;
  height: 100%;
  animation: fadeInUp 0.8s ease-out both;
}

.ganalytics-service-card-new:nth-child(1) {
  animation-delay: 0.2s;
}

.ganalytics-service-card-new:nth-child(2) {
  animation-delay: 0.4s;
}

.ganalytics-service-card-new:nth-child(3) {
  animation-delay: 0.6s;
}

.service-card-inner {
  position: relative;
  z-index: 2;
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.ganalytics-service-card-new:hover .service-card-inner {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.2);
}

.service-card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(241, 210, 75, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
}

.ganalytics-service-card-new:hover .service-card-hover-effect {
  opacity: 1;
}

.service-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.service-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(241, 210, 75, 0.3);
  border-radius: 20px;
  filter: blur(20px);
  animation: iconGlow 3s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.ganalytics-service-card-new:hover .service-icon {
  transform: rotate(5deg) scale(1.1);
}

.service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(241, 210, 75, 0.1);
  line-height: 1;
  z-index: 0;
}

.service-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.service-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  margin-bottom: 25px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.service-feature {
  padding: 6px 14px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 20px;
  font-size: 0.85rem;
  color: #f1d24b;
  transition: all 0.3s ease;
}

.ganalytics-service-card-new:hover .service-feature {
  background: rgba(241, 210, 75, 0.2);
  border-color: rgba(241, 210, 75, 0.5);
  transform: translateY(-2px);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f1d24b;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #ffe45c;
  gap: 15px;
}

.service-link:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .ganalytics-services-title-new {
    font-size: 2.5rem;
  }
  
  .ganalytics-services-grid-new {
    grid-template-columns: 1fr;
  }
  
  .service-card-inner {
    padding: 30px;
  }
}

@media (min-width: 992px) {
  .container.feature {
    max-width: 100% !important;
  }

  .feature-text {
    padding-left: calc(((100% - 960px) / 2) + 0.75rem);
  }
}

@media (min-width: 1200px) {
  .feature-text {
    padding-left: calc(((100% - 1140px) / 2) + 0.75rem);
  }
}

@media (min-width: 1400px) {
  .feature-text {
    padding-left: calc(((100% - 1320px) / 2) + 0.75rem);
  }
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #ffffff;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
   font-family: "PT Sans Narrow", sans-serif;
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
/* Google Fonts - Poppins */
@media (max-width: 700px) {
    .cookie-wrapper {
        width: 100%;
    }
}

/* New Cookie Banner Styles */
/* ============================================
   GANALYTICS COOKIE BANNER - NEW DESIGN
   ============================================ */
.ganalytics-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.ganalytics-cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.ganalytics-cookie-banner.hidden {
    display: none;
}

.ganalytics-cookie-wrapper {
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
}

.ganalytics-cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12), 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    animation: ganalyticsCookieSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes ganalyticsCookieSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ganalytics-cookie-main {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
}

.ganalytics-cookie-icon-box {
    position: relative;
    flex-shrink: 0;
}

.ganalytics-cookie-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    animation: ganalyticsCookieIconPulse 3s ease-in-out infinite;
}

@keyframes ganalyticsCookieIconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
    }
}

.ganalytics-cookie-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(102, 126, 234, 0.2);
    filter: blur(15px);
    animation: ganalyticsCookieGlow 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes ganalyticsCookieGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.ganalytics-cookie-content {
    flex: 1;
}

.ganalytics-cookie-title {
    color: #1a202c;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.ganalytics-cookie-text {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.ganalytics-cookie-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.ganalytics-cookie-link:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

.ganalytics-cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.ganalytics-cookie-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.ganalytics-cookie-btn-decline {
    background: #f7fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.ganalytics-cookie-btn-decline:hover {
    background: #edf2f7;
    color: #2d3748;
    border-color: #cbd5e0;
    transform: translateY(-1px);
}

.ganalytics-cookie-btn-accept {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.ganalytics-cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
    color: white;
}

.ganalytics-cookie-btn-accept i {
    font-size: 18px;
}

.ganalytics-cookie-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #718096;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.ganalytics-cookie-close:hover {
    background: #edf2f7;
    color: #2d3748;
    border-color: #cbd5e0;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .ganalytics-cookie-wrapper {
        padding: 15px;
    }
    
    .ganalytics-cookie-container {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
        align-items: stretch;
    }
    
    .ganalytics-cookie-main {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .ganalytics-cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .ganalytics-cookie-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ganalytics-cookie-close {
        top: 10px;
        right: 10px;
    }
}
/* New Footer Style */
.ganalytics-footer-new {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.ganalytics-footer-waves {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.ganalytics-wave {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
  animation: waveAnimation 15s ease-in-out infinite;
}

/* Override inline SVG fill for footer wave on all pages */
.ganalytics-wave path {
  fill: #1f2937; /* dark blue-grey instead of burgundy */
}

@keyframes waveAnimation {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25px);
  }
}

.ganalytics-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 30px 30px;
  position: relative;
  z-index: 1;
}

.ganalytics-footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.ganalytics-footer-column {
  animation: footerColumnFadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.ganalytics-footer-column:nth-child(1) { animation-delay: 0.1s; }
.ganalytics-footer-column:nth-child(2) { animation-delay: 0.2s; }
.ganalytics-footer-column:nth-child(3) { animation-delay: 0.3s; }
.ganalytics-footer-column:nth-child(4) { animation-delay: 0.4s; }

@keyframes footerColumnFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ganalytics-footer-logo-section {
  margin-bottom: 25px;
  position: relative;
}

.ganalytics-footer-logo {
  font-size: 2.5rem;
  font-weight: 900;
  color: #667eea;
  margin: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.ganalytics-footer-logo-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin-top: 10px;
  border-radius: 2px;
  animation: logoLineExpand 3s ease-in-out infinite;
}

@keyframes logoLineExpand {
  0%, 100% {
    width: 80px;
  }
  50% {
    width: 120px;
  }
}

.ganalytics-footer-description {
  color: #cbd5f5;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.ganalytics-footer-social-new {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ganalytics-social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(241, 210, 75, 0.1);
  border: 2px solid rgba(241, 210, 75, 0.3);
  color: #f1d24b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ganalytics-social-ripple {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(241, 210, 75, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ganalytics-social-btn:hover .ganalytics-social-ripple {
  width: 300px;
  height: 300px;
}

.ganalytics-social-btn:hover {
  background: #f1d24b;
  color: #3b0a24;
  border-color: #ffe45c;
  transform: translateY(-5px) rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.5);
}

.ganalytics-social-btn i {
  position: relative;
  z-index: 1;
  font-size: 1.1rem;
}

.ganalytics-footer-heading {
  color: #e2e8f0;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.ganalytics-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f1d24b, transparent);
  border-radius: 2px;
}

.ganalytics-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ganalytics-footer-nav-list li {
  margin-bottom: 15px;
}

.ganalytics-footer-nav-link {
  color: #f8f3e0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
  font-size: 0.95rem;
}

.ganalytics-link-icon {
  color: #667eea;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.ganalytics-footer-nav-link:hover {
  color: #ffe45c;
  padding-left: 10px;
}

.ganalytics-footer-nav-link:hover .ganalytics-link-icon {
  transform: translateX(5px);
}

.ganalytics-footer-contact-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ganalytics-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(241, 210, 75, 0.05);
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.ganalytics-contact-box:hover {
  background: rgba(102, 126, 234, 0.08);
  border-left-color: #667eea;
  transform: translateX(5px);
}

.ganalytics-contact-icon-wrapper {
  width: 40px;
  height: 40px;
  background: rgba(241, 210, 75, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.ganalytics-contact-box:hover .ganalytics-contact-icon-wrapper {
  background: linear-gradient(135deg, #667eea, #764ba2);
  transform: rotate(360deg) scale(1.1);
}

.ganalytics-contact-icon-wrapper i {
  color: #ffffff;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.ganalytics-contact-box:hover .ganalytics-contact-icon-wrapper i {
  color: #3b0a24;
}

.ganalytics-contact-text {
  flex: 1;
}

.ganalytics-contact-text p {
  margin: 0;
  color: #f8f3e0;
  line-height: 1.6;
  font-size: 0.9rem;
}

.ganalytics-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 210, 75, 0.3), transparent);
  margin: 40px 0 30px;
  position: relative;
}

.ganalytics-footer-divider::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 1px;
  background: #f1d24b;
  animation: dividerPulse 2s ease-in-out infinite;
}

@keyframes dividerPulse {
  0%, 100% {
    width: 100px;
    opacity: 1;
  }
  50% {
    width: 200px;
    opacity: 0.7;
  }
}

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

.ganalytics-footer-copyright {
  color: rgba(248, 243, 224, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

.ganalytics-scroll-top-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border: none;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(241, 210, 75, 0.4);
}

.ganalytics-scroll-ripple {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(59, 10, 36, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ganalytics-scroll-top-btn:hover .ganalytics-scroll-ripple {
  width: 200px;
  height: 200px;
}

.ganalytics-scroll-top-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(241, 210, 75, 0.6);
}

.ganalytics-scroll-top-btn i {
  position: relative;
  z-index: 1;
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.ganalytics-scroll-top-btn:hover i {
  transform: translateY(-3px);
}

@media (max-width: 1024px) {
  .ganalytics-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .ganalytics-footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ganalytics-footer-bottom-new {
    flex-direction: column;
    text-align: center;
  }
}


/* New Hero Section */
.ganalytics-hero-new {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0406;
  color: #f8f3e0;
  font-family: 'PT Sans Narrow', sans-serif;
  padding: 120px 20px 80px;
}

.ganalytics-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.ganalytics-hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #f1d24b;
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(1) {
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 30%;
  top: 60%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.particle:nth-child(3) {
  left: 70%;
  top: 30%;
  animation-delay: 4s;
  animation-duration: 14s;
}

.particle:nth-child(4) {
  left: 50%;
  top: 80%;
  animation-delay: 1s;
  animation-duration: 16s;
}

.particle:nth-child(5) {
  left: 80%;
  top: 50%;
  animation-delay: 3s;
  animation-duration: 13s;
}

.particle:nth-child(6) {
  left: 20%;
  top: 70%;
  animation-delay: 5s;
  animation-duration: 17s;
}

.particle:nth-child(7) {
  left: 60%;
  top: 10%;
  animation-delay: 2.5s;
  animation-duration: 15s;
}

.particle:nth-child(8) {
  left: 90%;
  top: 40%;
  animation-delay: 4.5s;
  animation-duration: 19s;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% {
    transform: translate(30px, -50px) scale(1.2);
    opacity: 0.8;
  }
  50% {
    transform: translate(-20px, -100px) scale(0.8);
    opacity: 0.4;
  }
  75% {
    transform: translate(40px, -30px) scale(1.1);
    opacity: 0.7;
  }
}

.ganalytics-hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(241, 210, 75, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 228, 92, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(59, 10, 36, 0.3) 0%, transparent 70%);
  animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.ganalytics-hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(241, 210, 75, 0.1), rgba(255, 228, 92, 0.05));
  filter: blur(40px);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation: shapeFloat1 25s ease-in-out infinite;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: -50px;
  animation: shapeFloat2 30s ease-in-out infinite;
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 10%;
  animation: shapeFloat3 20s ease-in-out infinite;
}

@keyframes shapeFloat1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(50px, 50px) rotate(180deg);
  }
}

@keyframes shapeFloat2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, -30px) rotate(-180deg);
  }
}

@keyframes shapeFloat3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(40px, -40px) rotate(90deg);
  }
}

.ganalytics-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ganalytics-hero-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ganalytics-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.9rem;
  color: #f1d24b;
  margin-bottom: 30px;
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(241, 210, 75, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(241, 210, 75, 0);
  }
}

.badge-icon {
  font-size: 1.2rem;
  animation: iconRotate 3s ease-in-out infinite;
}

@keyframes iconRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.ganalytics-hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-line-1 {
  animation: slideInLeft 0.8s ease-out 0.2s both;
}

.title-line-2 {
  animation: slideInLeft 0.8s ease-out 0.4s both;
}

.title-line-3 {
  animation: slideInLeft 0.8s ease-out 0.6s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.title-highlight {
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f1d24b, #ffe45c);
  border-radius: 2px;
  animation: underlineExpand 1s ease-out 1.2s both;
}

@keyframes underlineExpand {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.ganalytics-hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #e2e8f0;
  margin-bottom: 40px;
  max-width: 600px;
  animation: fadeIn 1s ease-out 0.8s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ganalytics-hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 1s both;
}

.ganalytics-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ganalytics-hero-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.ganalytics-hero-btn:hover::before {
  width: 300px;
  height: 300px;
}

.ganalytics-hero-btn-primary {
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  color: #3b0a24;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(241, 210, 75, 0.3);
}

.ganalytics-hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(241, 210, 75, 0.5);
}

.ganalytics-hero-btn-primary i {
  transition: transform 0.3s ease;
}

.ganalytics-hero-btn-primary:hover i {
  transform: translateX(5px);
}

.ganalytics-hero-btn-secondary {
  background: rgba(248, 243, 224, 0.1);
  color: #f8f3e0;
  border: 2px solid rgba(248, 243, 224, 0.3);
}

.ganalytics-hero-btn-secondary:hover {
  background: rgba(248, 243, 224, 0.2);
  border-color: rgba(248, 243, 224, 0.5);
  transform: translateY(-3px);
}

.ganalytics-hero-btn span {
  position: relative;
  z-index: 1;
}

.ganalytics-hero-btn i {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
}

.ganalytics-hero-stats-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.ganalytics-stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: rgba(248, 243, 224, 0.05);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.ganalytics-stat-card:hover {
  background: rgba(248, 243, 224, 0.1);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.2);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-content {
  flex: 1;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 8px;
  line-height: 1.3;
}

.stat-description {
  font-size: 0.9rem;
  color: rgba(248, 243, 224, 0.7);
  line-height: 1.5;
}

.ganalytics-hero-visual {
  position: relative;
  animation: fadeInRight 1s ease-out 0.4s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.ganalytics-hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}

.hero-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: imageFloat 6s ease-in-out infinite;
}

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

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

.hero-image-main:hover .hero-img {
  transform: scale(1.1);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.3), rgba(46, 13, 20, 0.5));
  pointer-events: none;
}

.hero-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: rgba(248, 243, 224, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 10;
  animation: cardFloat 4s ease-in-out infinite;
}

.card-1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: 1.5s;
}

.card-3 {
  top: 50%;
  left: -30px;
  animation-delay: 3s;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.floating-card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.floating-card-text {
  display: flex;
  flex-direction: column;
}

.floating-card-text strong {
  font-size: 0.9rem;
  color: #3b0a24;
  font-weight: 700;
  line-height: 1.2;
}

.floating-card-text span {
  font-size: 0.75rem;
  color: rgba(59, 10, 36, 0.7);
}

.hero-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.ganalytics-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(248, 243, 224, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, #f1d24b, transparent);
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .ganalytics-hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .ganalytics-hero-title {
    font-size: 3.5rem;
  }
  
  .ganalytics-hero-image-wrapper {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .ganalytics-hero-new {
    min-height: auto;
    padding: 100px 20px 60px;
  }
  
  .ganalytics-hero-title {
    font-size: 2.5rem;
  }
  
  .ganalytics-hero-description {
    font-size: 1.1rem;
  }
  
  .ganalytics-hero-actions {
    flex-direction: column;
  }
  
  .ganalytics-hero-btn {
    width: 100%;
    justify-content: center;
  }
  
  .ganalytics-hero-stats-new {
    grid-template-columns: 1fr;
  }
  
  .hero-floating-card {
    display: none;
  }
}

.ganalytics-about {
  background: #1b0a0e;
  padding: 100px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
}

.ganalytics-about-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.ganalytics-about-image {
  flex: 1 1 40%;
  height: 300px;
  background-image: url('img/carousel-1.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(255, 239, 184, 0.1);
}

.ganalytics-about-content {
  flex: 1 1 50%;
}

.ganalytics-about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd43b;
}

.ganalytics-about-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #f8e3a3;
  line-height: 1.6;
}

.ganalytics-about-content ul {
  list-style: none;
  padding: 0;
}

.ganalytics-about-content li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #fff3bf;
}

.ganalytics-about-content li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #facc15;
  font-weight: bold;
}

/* New Why Section */
.ganalytics-why-new {
  position: relative;
  background: linear-gradient(180deg, #2e0d14 0%, #3b0a24 50%, #2e0d14 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-why-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.why-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.06) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

.why-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.why-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(241, 210, 75, 0.1), rgba(255, 228, 92, 0.05));
  filter: blur(50px);
}

.why-shape-1 {
  width: 500px;
  height: 500px;
  top: -150px;
  right: -150px;
  animation: whyShapeFloat1 30s ease-in-out infinite;
}

.why-shape-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  animation: whyShapeFloat2 25s ease-in-out infinite;
}

@keyframes whyShapeFloat1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, 30px) rotate(180deg);
  }
}

@keyframes whyShapeFloat2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(40px, -40px) rotate(-180deg);
  }
}

.ganalytics-why-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

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

.ganalytics-why-text-new {
  animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.why-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.why-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.why-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.why-title-line-2 {
  display: block;
  color: #1a202c;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.why-description {
  margin-bottom: 40px;
}

.why-text-main {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out 0.6s both;
}

.why-text-secondary {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  animation: fadeIn 1s ease-out 0.8s both;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: fadeInUp 1s ease-out 1s both;
}

.why-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.why-feature-item:hover {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateX(10px);
}

.why-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

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

.why-feature-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 8px;
}

.why-feature-content p {
  font-size: 0.95rem;
  color: rgba(248, 243, 224, 0.8);
  line-height: 1.6;
  margin: 0;
}

.ganalytics-why-visual-new {
  position: relative;
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.why-image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
}

.why-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: whyImageFloat 8s ease-in-out infinite;
}

@keyframes whyImageFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

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

.why-image-main:hover .why-img {
  transform: scale(1.1);
}

.why-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.2), rgba(46, 13, 20, 0.4));
  pointer-events: none;
}

.why-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.why-floating-element {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(248, 243, 224, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #3b0a24;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 10;
  animation: whyElementFloat 5s ease-in-out infinite;
}

.why-floating-element i {
  color: #f1d24b;
  font-size: 1.2rem;
}

.element-1 {
  top: 15%;
  right: -30px;
  animation-delay: 0s;
}

.element-2 {
  bottom: 30%;
  left: -40px;
  animation-delay: 2s;
}

.element-3 {
  top: 50%;
  right: -20px;
  animation-delay: 4s;
}

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

.why-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: whyGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes whyGlowPulse {
  0%, 100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

@media (max-width: 1024px) {
  .why-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .why-title {
    font-size: 3rem;
  }
  
  .why-image-wrapper {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .why-title {
    font-size: 2.5rem;
  }
  
  .why-floating-element {
    display: none;
  }
}

/* New Testimonials Section */
.ganalytics-testimonials-new {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.testimonials-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(241, 210, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255, 228, 92, 0.04) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.ganalytics-testimonials-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.testimonials-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.testimonials-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f8f3e0;
}

.testimonials-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.testimonials-title-line-2 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 224, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

.ganalytics-testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.ganalytics-testimonial-new {
  animation: fadeInUp 0.8s ease-out both;
}

.ganalytics-testimonial-new:nth-child(1) {
  animation-delay: 0.2s;
}

.ganalytics-testimonial-new:nth-child(2) {
  animation-delay: 0.4s;
}

.ganalytics-testimonial-new:nth-child(3) {
  animation-delay: 0.6s;
}

.testimonial-card {
  position: relative;
  background: rgba(248, 243, 224, 0.05);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f1d24b, #ffe45c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.testimonial-card:hover {
  background: rgba(248, 243, 224, 0.08);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.2);
}

.testimonial-quote-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 2rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  animation: quoteIconPulse 3s ease-in-out infinite;
}

@keyframes quoteIconPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(241, 210, 75, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(241, 210, 75, 0);
  }
}

.testimonial-content {
  flex: 1;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.9);
  font-style: italic;
  margin: 0;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: -15px;
  font-size: 4rem;
  color: rgba(241, 210, 75, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  border-top: 1px solid rgba(241, 210, 75, 0.2);
  position: relative;
  z-index: 2;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f1d24b;
  margin: 0 0 5px 0;
}

.testimonial-author-role {
  font-size: 0.9rem;
  color: rgba(248, 243, 224, 0.7);
  margin: 0;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
}

.testimonial-rating i {
  color: #f1d24b;
  font-size: 1rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-rating i:nth-child(1) { animation-delay: 0s; }
.testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(0.9);
  }
}

.testimonial-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.1), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.testimonial-card:hover .testimonial-card-glow {
  opacity: 1;
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .ganalytics-testimonials-grid-new {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 30px;
  }
  
  .testimonial-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* New Team Section */
.ganalytics-team-new {
  position: relative;
  background: linear-gradient(180deg, #0a0406 0%, #1a0508 50%, #0a0406 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-team-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.team-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(241, 210, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 228, 92, 0.04) 0%, transparent 50%);
  animation: patternMove 25s ease-in-out infinite;
}

.ganalytics-team-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.team-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ganalytics-team-title-new {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f8f3e0;
}

.team-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.team-title-line-2 {
  display: block;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.team-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 224, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

.ganalytics-team-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.ganalytics-team-member-new {
  animation: fadeInUp 0.8s ease-out both;
}

.ganalytics-team-member-new:nth-child(1) {
  animation-delay: 0.2s;
}

.ganalytics-team-member-new:nth-child(2) {
  animation-delay: 0.4s;
}

.ganalytics-team-member-new:nth-child(3) {
  animation-delay: 0.6s;
}

.ganalytics-team-member-new:nth-child(4) {
  animation-delay: 0.8s;
}

.team-member-card {
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 24px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.team-member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f1d24b, #ffe45c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.team-member-card:hover::before {
  transform: scaleX(1);
}

.team-member-card:hover {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.2);
}

.team-member-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin-bottom: 25px;
  border-radius: 20px;
  overflow: hidden;
}

.team-member-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.team-member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.8), rgba(46, 13, 20, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.team-member-card:hover .team-member-overlay {
  opacity: 1;
}

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

.team-social-link {
  width: 45px;
  height: 45px;
  background: rgba(102, 126, 234, 0.08);
  border: 2px solid rgba(102, 126, 234, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.team-social-link:hover {
  background: #667eea;
  color: #ffffff;
  border-color: #667eea;
  transform: translateY(-5px) scale(1.1);
}

.team-member-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.team-member-card:hover .team-member-glow {
  opacity: 1;
}

.team-member-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.team-member-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.team-member-role {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 15px;
  font-weight: 500;
}

.team-member-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #667eea, transparent);
  margin-bottom: 15px;
  transition: width 0.3s ease;
}

.team-member-card:hover .team-member-divider {
  width: 100px;
}

.team-member-bio {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4a5568;
  flex: 1;
}

@media (max-width: 768px) {
  .ganalytics-team-title-new {
    font-size: 2.5rem;
  }
  
  .ganalytics-team-grid-new {
    grid-template-columns: 1fr;
  }
  
  .team-member-card {
    padding: 25px;
  }
}

.ganalytics-contact {
  background: #f5f7fa;
  color: #1a202c;
  padding: 100px 20px;
}
.ganalytics-contact-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.ganalytics-contact-form {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}
.ganalytics-contact-form input,
.ganalytics-contact-form textarea {
  padding: 15px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}
.ganalytics-contact-form button {
  padding: 15px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}
.ganalytics-contact-form button:hover {
  background: #ffe45c;
}

/* ============================================
   NEW ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section */
/* legacy about hero (not used by current about page) */
.ganalytics-about-hero {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 150px 20px 100px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.15) 0%, transparent 55%);
  animation: patternMove 30s ease-in-out infinite;
}

.about-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.about-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.about-title-line-1,
.about-title-line-2,
.about-title-line-3 {
  display: block;
  animation: slideInUp 0.8s ease-out both;
}

.about-title-line-1 {
  animation-delay: 0.2s;
}

.about-title-line-2 {
  animation-delay: 0.4s;
}

.about-title-line-3 {
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.6s;
}

.about-hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.8s both;
}

/* About Main Section */
.ganalytics-about-new {
  position: relative;
  background: linear-gradient(180deg, #2e0d14 0%, #3b0a24 50%, #2e0d14 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-about-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.about-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.04) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

.ganalytics-about-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

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

.ganalytics-about-visual-new {
  animation: fadeInLeft 0.8s ease-out;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

.about-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.2), rgba(46, 13, 20, 0.4));
  pointer-events: none;
}

.about-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: whyGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.ganalytics-about-content-new {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.about-content-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #f1d24b;
  margin-bottom: 25px;
}

.about-content-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  margin-bottom: 40px;
}

.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-feature-item-new {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.about-feature-item-new:hover {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateX(10px);
}

.about-feature-icon-new {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-feature-item-new:hover .about-feature-icon-new {
  transform: rotate(5deg) scale(1.1);
}

.about-feature-text-new h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 8px;
}

.about-feature-text-new p {
  font-size: 0.95rem;
  color: rgba(248, 243, 224, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Values Section */
.ganalytics-values-new {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-values-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.values-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.ganalytics-values-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.values-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.values-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.values-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f8f3e0;
}

.values-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.values-title-line-2 {
  display: block;
  color: #1a202c;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.values-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 224, 0.7);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

.ganalytics-values-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.ganalytics-value-card-new {
  position: relative;
  height: 100%;
  animation: fadeInUp 0.8s ease-out both;
}

.ganalytics-value-card-new:nth-child(1) {
  animation-delay: 0.2s;
}

.ganalytics-value-card-new:nth-child(2) {
  animation-delay: 0.4s;
}

.ganalytics-value-card-new:nth-child(3) {
  animation-delay: 0.6s;
}

.value-card-inner {
  position: relative;
  z-index: 2;
  background: rgba(248, 243, 224, 0.03);
  border: 1px solid rgba(241, 210, 75, 0.2);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.ganalytics-value-card-new:hover .value-card-inner {
  background: rgba(248, 243, 224, 0.06);
  border-color: rgba(241, 210, 75, 0.4);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.2);
}

.value-card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(241, 210, 75, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
}

.ganalytics-value-card-new:hover .value-card-hover-effect {
  opacity: 1;
}

.value-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.value-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.value-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(241, 210, 75, 0.3);
  border-radius: 20px;
  filter: blur(20px);
  animation: iconGlow 3s ease-in-out infinite;
}

.ganalytics-value-card-new:hover .value-icon {
  transform: rotate(5deg) scale(1.1);
}

.value-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f1d24b;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.value-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  flex: 1;
  position: relative;
  z-index: 2;
}

/* Mission Section */
.ganalytics-mission-new {
  position: relative;
  background: linear-gradient(180deg, #2e0d14 0%, #3b0a24 50%, #2e0d14 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-mission-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.mission-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.06) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

.ganalytics-mission-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

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

.ganalytics-mission-text-new {
  animation: fadeInLeft 0.8s ease-out;
}

.mission-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #f1d24b;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mission-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #f8f3e0;
}

.mission-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.mission-title-line-2 {
  display: block;
  color: #1a202c;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.mission-description {
  margin-bottom: 40px;
}

.mission-text-main {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.mission-text-secondary {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
}

.mission-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  color: #3b0a24;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.3);
}

.mission-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(241, 210, 75, 0.4);
  gap: 20px;
}

.mission-cta-btn i {
  transition: transform 0.3s ease;
}

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

.ganalytics-mission-visual-new {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.mission-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

.mission-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.mission-image-main:hover .mission-img {
  transform: scale(1.1);
}

.mission-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.2), rgba(46, 13, 20, 0.4));
  pointer-events: none;
}

.mission-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: whyGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   NEW ABOUT PAGE STYLES
   (inner pages in main site colors)
   ============================================ */

/* About Hero */
.lifeprogression-about-hero {
  position: relative;
  padding: 150px 20px 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.about-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.16) 0%, transparent 55%);
  opacity: 0.7;
}

.about-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-hero-content {
  max-width: 650px;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(102, 126, 234, 0.12);
  color: #667eea;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.about-hero-title {
  font-size: 54px;
  line-height: 1.1;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 20px;
}

.about-title-line-1,
.about-title-line-2,
.about-title-line-3 {
  display: block;
}

.about-title-line-2 {
  color: #4a5568;
}

.about-title-line-3 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
  max-width: 580px;
}

/* About Main Section */
.lifeprogression-about-new {
  position: relative;
  padding: 100px 20px 80px;
  background: #f7fafc;
  font-family: 'PT Sans Narrow', sans-serif;
}

.lifeprogression-about-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 0%, rgba(102, 126, 234, 0.1) 0%, transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(118, 75, 162, 0.1) 0%, transparent 55%);
  opacity: 0.5;
}

.lifeprogression-about-container-new {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.about-content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.lifeprogression-about-visual-new {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  max-width: 520px;
}

.about-image-main {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(102, 126, 234, 0.25);
}

.about-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
  mix-blend-mode: multiply;
}

.about-image-glow {
  position: absolute;
  inset: 12%;
  border-radius: 30px;
  background: radial-gradient(circle at 10% 10%, rgba(102, 126, 234, 0.25), transparent 60%);
  opacity: 0.7;
  pointer-events: none;
}

.lifeprogression-about-content-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-content-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(102, 126, 234, 0.12);
  color: #667eea;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-content-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a202c;
  margin: 0;
}

.about-content-text {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5568;
}

.about-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 10px;
}

.about-feature-item-new {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(148, 163, 184, 0.2);
}

.about-feature-icon-new {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
}

.about-feature-text-new h4 {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #1a202c;
}

.about-feature-text-new p {
  font-size: 15px;
  margin: 0;
  color: #4a5568;
}

/* Why / Vision Section on About */
.lifeprogression-why-new {
  position: relative;
  padding: 90px 20px 80px;
  background: #ffffff;
  font-family: 'PT Sans Narrow', sans-serif;
}

.lifeprogression-why-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.why-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(118, 75, 162, 0.08) 0%, transparent 55%);
}

.why-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.18), rgba(118, 75, 162, 0.18));
}

.why-shape-1 {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -60px;
}

.why-shape-2 {
  width: 220px;
  height: 220px;
  top: -90px;
  right: -40px;
}

.lifeprogression-why-container-new {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.why-content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.lifeprogression-why-text-new {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(102, 126, 234, 0.12);
  color: #667eea;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.why-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a202c;
  margin: 0 0 8px;
}

.why-title-line-1,
.why-title-line-2 {
  display: block;
}

.why-description {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5568;
}

.why-text-main {
  margin-bottom: 8px;
}

.why-text-secondary {
  margin: 0;
}

.lifeprogression-why-visual-new {
  position: relative;
}

.why-image-wrapper {
  position: relative;
  max-width: 520px;
}

.why-image-main {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(102, 126, 234, 0.22);
}

.why-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.why-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(102, 126, 234, 0.18), rgba(118, 75, 162, 0.18));
  mix-blend-mode: multiply;
}

.why-image-glow {
  position: absolute;
  inset: 14%;
  border-radius: 28px;
  background: radial-gradient(circle at 90% 10%, rgba(102, 126, 234, 0.25), transparent 65%);
}

/* Values Section */
.lifeprogression-values-new {
  position: relative;
  padding: 90px 20px 80px;
  background: #f7fafc;
  font-family: 'PT Sans Narrow', sans-serif;
}

.lifeprogression-values-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.values-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 0%, rgba(102, 126, 234, 0.09) 0%, transparent 55%),
    radial-gradient(circle at 85% 100%, rgba(118, 75, 162, 0.09) 0%, transparent 55%);
}

.lifeprogression-values-container-new {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.values-header {
  text-align: center;
  margin-bottom: 50px;
}

.values-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(102, 126, 234, 0.12);
  color: #667eea;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.values-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a202c;
  margin: 14px 0 6px;
}

.values-title-line-1,
.values-title-line-2 {
  display: block;
}

.values-subtitle {
  margin: 0;
  font-size: 16px;
  color: #4a5568;
}

.lifeprogression-values-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.lifeprogression-value-card-new {
  position: relative;
}

.value-card-inner {
  position: relative;
  z-index: 1;
  padding: 28px 26px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.35);
  height: 100%;
}

.value-icon-wrapper {
  position: relative;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
}

.value-icon {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  font-size: 22px;
}

.value-icon-glow {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.25), transparent 70%);
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1a202c;
}

.value-description {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

.value-card-hover-effect {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 0%, rgba(102, 126, 234, 0.25), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lifeprogression-value-card-new:hover .value-card-hover-effect {
  opacity: 1;
}

/* Mission Section */
.lifeprogression-mission-new {
  position: relative;
  padding: 90px 20px 110px;
  background: #ffffff;
  font-family: 'PT Sans Narrow', sans-serif;
}

.lifeprogression-mission-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mission-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 0% 100%, rgba(102, 126, 234, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 100% 50%, rgba(118, 75, 162, 0.12) 0%, transparent 55%);
}

.lifeprogression-mission-container-new {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.mission-content-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.lifeprogression-mission-text-new {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mission-badge {
  display: inline-flex;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(102, 126, 234, 0.12);
  color: #667eea;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mission-title {
  font-size: 34px;
  font-weight: 800;
  color: #1a202c;
  margin: 10px 0 6px;
}

.mission-title-line-1,
.mission-title-line-2 {
  display: block;
}

.mission-description {
  font-size: 17px;
  line-height: 1.8;
  color: #4a5568;
}

.mission-text-main {
  margin-bottom: 8px;
}

.mission-text-secondary {
  margin: 0;
}

.mission-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mission-cta-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(102, 126, 234, 0.55);
}

.lifeprogression-mission-visual-new {
  position: relative;
}

.mission-image-wrapper {
  position: relative;
  max-width: 520px;
}

.mission-image-main {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(102, 126, 234, 0.28);
}

.mission-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mission-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.18));
  mix-blend-mode: multiply;
}

.mission-image-glow {
  position: absolute;
  inset: 12%;
  border-radius: 26px;
  background: radial-gradient(circle at 10% 90%, rgba(102, 126, 234, 0.25), transparent 65%);
}

@media (max-width: 991.98px) {
  .about-hero-container,
  .lifeprogression-about-container-new,
  .lifeprogression-why-container-new,
  .lifeprogression-values-container-new,
  .lifeprogression-mission-container-new {
    padding: 0 20px;
  }

  .about-hero-title {
    font-size: 40px;
  }

  .about-content-wrapper,
  .why-content-wrapper,
  .mission-content-wrapper {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
}

@media (max-width: 575.98px) {
  .about-hero-title {
    font-size: 32px;
  }

  .about-hero {
    padding-top: 130px;
  }
}

/* ============================================
   NEW CONTACT PAGE STYLES
   (updated to match main page colors)
   ============================================ */

/* Contact Hero Section */
.ganalytics-contact-hero {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 150px 20px 100px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.15) 0%, transparent 55%);
  animation: patternMove 30s ease-in-out infinite;
}

.contact-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.contact-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #667eea;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a202c;
}

.contact-title-line-1,
.contact-title-line-2 {
  display: block;
  animation: slideInUp 0.8s ease-out both;
}

.contact-title-line-1 {
  animation-delay: 0.2s;
}

.contact-title-line-2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.4s;
}

.contact-hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* Contact Info Section */
.ganalytics-contact-info-new {
  position: relative;
  background: #f7fafc;
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-contact-info-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-info-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.04) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

.ganalytics-contact-info-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-info-header {
  text-align: center;
  margin-bottom: 80px;
  animation: fadeInUp 0.8s ease-out;
}

.contact-info-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #667eea;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-info-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a202c;
}

.contact-info-title-line-1 {
  display: block;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.contact-info-title-line-2 {
  display: block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.ganalytics-contact-info-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.ganalytics-contact-info-card-new {
  position: relative;
  height: 100%;
  animation: fadeInUp 0.8s ease-out both;
}

.ganalytics-contact-info-card-new:nth-child(1) {
  animation-delay: 0.2s;
}

.ganalytics-contact-info-card-new:nth-child(2) {
  animation-delay: 0.4s;
}

.ganalytics-contact-info-card-new:nth-child(3) {
  animation-delay: 0.6s;
}

.contact-info-card-inner {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.ganalytics-contact-info-card-new:hover .contact-info-card-inner {
  background: #f1f5f9;
  border-color: rgba(102, 126, 234, 0.65);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.2);
}

.contact-info-card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(241, 210, 75, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 24px;
}

.ganalytics-contact-info-card-new:hover .contact-info-card-hover-effect {
  opacity: 1;
}

.contact-info-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.contact-info-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b0a24;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.contact-info-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(102, 126, 234, 0.35);
  border-radius: 50%;
  filter: blur(20px);
  animation: iconGlow 3s ease-in-out infinite;
}

.ganalytics-contact-info-card-new:hover .contact-info-icon {
  transform: rotate(5deg) scale(1.1);
}

.contact-info-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.contact-info-card-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #4a5568;
  position: relative;
  z-index: 2;
}

/* Contact Form Section */
.ganalytics-contact-new {
  position: relative;
  background: #ffffff;
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.ganalytics-contact-container-new {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.contact-form-wrapper {
  animation: fadeInUp 0.8s ease-out;
}

.ganalytics-contact-form-section {
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 24px;
  padding: 60px;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-form-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #667eea;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-form-title {
  font-size: 2.8rem;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 15px;
}

.contact-form-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
}

.contact-form-new {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group-new,
.form-field-group {
  position: relative;
}

.form-label-new {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a202c;
  margin-bottom: 10px;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 18px 24px;
  background: #ffffff;
  border: 2px solid #cbd5e1;
  border-radius: 12px;
  color: #1a202c;
  font-size: 1rem;
  font-family: 'PT Sans Narrow', sans-serif;
  transition: all 0.3s ease;
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: #667eea;
  background: #ffffff;
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: #94a3b8;
}

.form-textarea-new {
  resize: vertical;
  min-height: 150px;
}

.form-input-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 0 0 12px 12px;
  pointer-events: none;
  margin: 0 2px;
}

.form-group-new:focus-within .form-input-glow,
.form-field-group:focus-within .form-input-glow {
  transform: scaleX(1);
}

.contact-form-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.35);
  overflow: hidden;
  align-self: flex-start;
}

.contact-form-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
  gap: 20px;
}

.contact-form-submit-btn i {
  transition: transform 0.3s ease;
}

.contact-form-submit-btn:hover i {
  transform: translateX(5px);
}

.btn-ripple-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-form-submit-btn:active .btn-ripple-effect {
  width: 300px;
  height: 300px;
}

/* Form validation styles */
.required-star {
  color: #667eea;
  margin-left: 4px;
}

.invalid-feedback {
  display: none;
  font-size: 0.85rem;
  color: #ff6b6b;
  margin-top: 8px;
  padding-left: 4px;
}

.form-field-group input:invalid:not(:placeholder-shown) ~ .invalid-feedback,
.form-field-group textarea:invalid:not(:placeholder-shown) ~ .invalid-feedback {
  display: block;
}

.form-field-group input:invalid:not(:placeholder-shown),
.form-field-group textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 107, 107, 0.5);
}

.form-field-group input:valid:not(:placeholder-shown),
.form-field-group textarea:valid:not(:placeholder-shown) {
  border-color: rgba(16, 185, 129, 0.5);
}

.form-status {
  margin-top: 20px;
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.form-status .loading {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

.form-status .error-message {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.form-status .sent-message {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

/* Visit Us Section */
.ganalytics-contact-visit-new {
  position: relative;
  background: #f7fafc;
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-contact-visit-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.contact-visit-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(255, 228, 92, 0.06) 0%, transparent 50%);
  animation: patternMove 35s ease-in-out infinite;
}

.ganalytics-contact-visit-container-new {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

.contact-visit-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ganalytics-contact-visit-text-new {
  animation: fadeInLeft 0.8s ease-out;
}

.contact-visit-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #667eea;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-visit-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 30px;
}

.contact-visit-description {
  margin-bottom: 40px;
}

.contact-visit-text-main {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
}

.contact-visit-text-secondary {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
}

.ganalytics-contact-visit-visual-new {
  animation: fadeInRight 0.8s ease-out 0.4s both;
}

.contact-visit-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

.contact-visit-image-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.contact-visit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.contact-visit-image-main:hover .contact-visit-img {
  transform: scale(1.1);
}

.contact-visit-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 10, 36, 0.2), rgba(46, 13, 20, 0.4));
  pointer-events: none;
}

.contact-visit-image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(241, 210, 75, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  animation: whyGlowPulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* ============================================
   NEW FAQ PAGE STYLES
   ============================================ */

/* FAQ Hero Section */
.ganalytics-faq-hero {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 150px 20px 100px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.faq-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.faq-hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.faq-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.faq-hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #667eea;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.faq-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a202c;
}

.faq-title-line-1,
.faq-title-line-2 {
  display: block;
  animation: slideInUp 0.8s ease-out both;
}

.faq-title-line-1 {
  animation-delay: 0.2s;
}

.faq-title-line-2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.4s;
}

.faq-hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* FAQ Section */
.ganalytics-faq-new {
  position: relative;
  background: #f7fafc;
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-faq-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.faq-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.ganalytics-faq-container-new {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.ganalytics-faq-list-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ganalytics-faq-item-new {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.ganalytics-faq-item-new:nth-child(1) { animation-delay: 0.1s; }
.ganalytics-faq-item-new:nth-child(2) { animation-delay: 0.2s; }
.ganalytics-faq-item-new:nth-child(3) { animation-delay: 0.3s; }
.ganalytics-faq-item-new:nth-child(4) { animation-delay: 0.4s; }
.ganalytics-faq-item-new:nth-child(5) { animation-delay: 0.5s; }
.ganalytics-faq-item-new:nth-child(6) { animation-delay: 0.6s; }

.ganalytics-faq-item-new.active {
  background: #f1f5f9;
  border-color: rgba(102, 126, 234, 0.6);
}

.faq-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  cursor: pointer;
  position: relative;
}

.faq-item-number {
  font-size: 1.5rem;
  font-weight: 900;
  color: rgba(102, 126, 234, 0.4);
  min-width: 40px;
}

.faq-item-question {
  flex: 1;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.faq-item-toggle {
  width: 40px;
  height: 40px;
  background: rgba(102, 126, 234, 0.08);
  border: 2px solid rgba(102, 126, 234, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #667eea;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item-toggle:hover {
  background: rgba(102, 126, 234, 0.18);
  border-color: rgba(102, 126, 234, 0.7);
  transform: rotate(180deg);
}

.ganalytics-faq-item-new.active .faq-item-toggle {
  transform: rotate(180deg);
  background: rgba(102, 126, 234, 0.18);
}

.faq-item-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}

.ganalytics-faq-item-new.active .faq-item-answer {
  max-height: 500px;
  padding: 0 30px 30px;
}

.faq-item-answer p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(248, 243, 224, 0.8);
  margin: 0;
}

/* FAQ Contact Section */
.ganalytics-faq-contact-new {
  position: relative;
  background: #f7fafc;
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-faq-contact-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.faq-contact-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.12) 0%, transparent 55%);
  animation: patternMove 30s ease-in-out infinite;
}

.ganalytics-faq-contact-container-new {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.faq-contact-content {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.faq-contact-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
}

.faq-contact-icon {
  position: relative;
  z-index: 2;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 3rem;
  transition: all 0.3s ease;
}

.faq-contact-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  filter: blur(30px);
  animation: iconGlow 3s ease-in-out infinite;
}

.faq-contact-title {
  font-size: 3rem;
  font-weight: 900;
  color: #1a202c;
  margin-bottom: 20px;
}

.faq-contact-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 40px;
}

.faq-contact-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  overflow: hidden;
}

.faq-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.55);
  gap: 20px;
}

.faq-contact-btn i {
  transition: transform 0.3s ease;
}

.faq-contact-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .about-content-wrapper,
  .mission-content-wrapper,
  .contact-visit-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-hero-title,
  .contact-hero-title,
  .faq-hero-title {
    font-size: 3rem;
  }
  
  .about-image-wrapper,
  .mission-image-wrapper,
  .contact-visit-image-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .about-hero-title,
  .contact-hero-title,
  .faq-hero-title {
    font-size: 2.5rem;
  }
  
  .ganalytics-values-grid-new,
  .ganalytics-contact-info-grid-new {
    grid-template-columns: 1fr;
  }
  
  .ganalytics-contact-form-section {
    padding: 40px 30px;
  }
  
  .faq-item-header {
    padding: 20px;
    gap: 15px;
  }
  
  .faq-item-question {
    font-size: 1.1rem;
  }
  
  .faq-item-answer {
    padding: 0 20px;
  }
  
  .ganalytics-faq-item-new.active .faq-item-answer {
    padding: 0 20px 20px;
  }
}

/* ============================================
   POLICY PAGES STYLES (Cookie, Privacy, Terms)
   ============================================ */

/* Policy Hero Section */
.ganalytics-policy-hero {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 150px 20px 100px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.policy-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.policy-hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(241, 210, 75, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(255, 228, 92, 0.05) 0%, transparent 50%);
  animation: patternMove 30s ease-in-out infinite;
}

.policy-hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.policy-hero-content {
  animation: fadeInUp 0.8s ease-out;
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(102, 126, 234, 0.12);
  border: 1px solid rgba(102, 126, 234, 0.35);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #667eea;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.policy-hero-badge i {
  font-size: 1rem;
}

.policy-hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a202c;
}

.policy-title-line-1,
.policy-title-line-2 {
  display: block;
  animation: slideInUp 0.8s ease-out both;
}

.policy-title-line-1 {
  animation-delay: 0.2s;
}

.policy-title-line-2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation-delay: 0.4s;
}

.policy-hero-description {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 1s ease-out 0.6s both;
}

/* Policy Content Section */
.ganalytics-policy-content {
  position: relative;
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-policy-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.policy-content-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 40%, rgba(102, 126, 234, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 75% 60%, rgba(118, 75, 162, 0.12) 0%, transparent 55%);
  animation: patternMove 35s ease-in-out infinite;
}

.ganalytics-policy-container {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

.policy-content-wrapper {
  animation: fadeInUp 0.8s ease-out;
}

.policy-intro {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
}

.policy-intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a5568;
  margin: 0;
}

.policy-section {
  margin-bottom: 50px;
  background: #ffffff;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
}

.policy-section:nth-child(1) { animation-delay: 0.1s; }
.policy-section:nth-child(2) { animation-delay: 0.2s; }
.policy-section:nth-child(3) { animation-delay: 0.3s; }
.policy-section:nth-child(4) { animation-delay: 0.4s; }
.policy-section:nth-child(5) { animation-delay: 0.5s; }
.policy-section:nth-child(6) { animation-delay: 0.6s; }
.policy-section:nth-child(7) { animation-delay: 0.7s; }
.policy-section:nth-child(8) { animation-delay: 0.8s; }

.policy-section:hover {
  background: #f1f5f9;
  border-color: rgba(102, 126, 234, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(148, 163, 184, 0.25);
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(226, 232, 240, 0.9);
}

.policy-section-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(102, 126, 234, 0.35);
  min-width: 60px;
  line-height: 1;
}

.policy-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
  flex: 1;
}

.policy-section-content {
  color: #4a5568;
}

.policy-section-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.policy-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.policy-feature-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.policy-feature-card:hover {
  background: #f1f5f9;
  border-color: rgba(102, 126, 234, 0.6);
  transform: translateY(-5px);
}

.policy-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.policy-feature-card:hover .policy-feature-icon {
  transform: rotate(5deg) scale(1.1);
}

.policy-feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.policy-feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5568;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

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

.policy-list li i {
  color: #667eea;
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.policy-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  margin-top: 20px;
}

.policy-contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.55);
  gap: 20px;
  color: #ffffff;
}

.policy-contact-btn i {
  transition: transform 0.3s ease;
}

.policy-contact-btn:hover i {
  transform: translateX(5px);
}

/* ============================================
   THANKS PAGE STYLES
   ============================================ */

.ganalytics-thanks-hero {
  position: relative;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 200px 20px 150px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.thanks-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.thanks-hero-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.15) 0%, transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.15) 0%, transparent 55%);
  animation: patternMove 30s ease-in-out infinite;
}

.thanks-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.thanks-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(102, 126, 234, 0.6);
  border-radius: 50%;
  animation: thanksParticleFloat 15s ease-in-out infinite;
}

.thanks-particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.thanks-particle:nth-child(2) {
  top: 40%;
  left: 80%;
  animation-delay: 2s;
}

.thanks-particle:nth-child(3) {
  top: 60%;
  left: 20%;
  animation-delay: 4s;
}

.thanks-particle:nth-child(4) {
  top: 80%;
  left: 70%;
  animation-delay: 6s;
}

.thanks-particle:nth-child(5) {
  top: 30%;
  left: 50%;
  animation-delay: 8s;
}

@keyframes thanksParticleFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(30px, -30px) scale(1.5);
    opacity: 1;
  }
}

.thanks-hero-container {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thanks-content {
  animation: fadeInUp 0.8s ease-out;
}

.thanks-icon-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 40px;
}

.thanks-icon {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 5rem;
  animation: thanksIconBounce 2s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(241, 210, 75, 0.4);
}

@keyframes thanksIconBounce {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.05) translateY(-10px);
  }
}

.thanks-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: rgba(241, 210, 75, 0.4);
  border-radius: 50%;
  filter: blur(30px);
  animation: thanksGlowPulse 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes thanksGlowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.thanks-icon-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  border: 2px solid rgba(241, 210, 75, 0.5);
  border-radius: 50%;
  animation: thanksRipple 2s ease-out infinite;
  z-index: 0;
}

@keyframes thanksRipple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.thanks-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #1a202c;
}

.thanks-title-line-1 {
  display: block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out 0.3s both;
}

.thanks-description {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 20px;
  animation: fadeIn 1s ease-out 0.5s both;
}

.thanks-subdescription {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4a5568;
  margin-bottom: 50px;
  animation: fadeIn 1s ease-out 0.7s both;
}

.thanks-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.thanks-btn-primary {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.thanks-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.55);
  gap: 20px;
  color: #ffffff;
}

.thanks-btn-secondary {
  background: #ffffff;
  border: 2px solid #667eea;
  color: #667eea;
}

.thanks-btn-secondary:hover {
  background: #667eea;
  border-color: #667eea;
  transform: translateY(-3px);
  gap: 20px;
  color: #f1d24b;
}

.thanks-btn i {
  transition: transform 0.3s ease;
}

.thanks-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .policy-hero-title,
  .thanks-title {
    font-size: 2.5rem;
  }
  
  .policy-section {
    padding: 30px 20px;
  }
  
  .policy-section-title {
    font-size: 1.5rem;
  }
  
  .policy-features-grid {
    grid-template-columns: 1fr;
  }
  
  .thanks-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .thanks-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Pricing Section */
.ganalytics-pricing {
  position: relative;
  background: linear-gradient(180deg, #1a0508 0%, #2e0d14 50%, #1a0508 100%);
  padding: 120px 20px;
  font-family: 'PT Sans Narrow', sans-serif;
  overflow: hidden;
}

.ganalytics-pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  color: #f1d24b;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f8f3e0;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pricing-subtitle {
  font-size: 1.2rem;
  color: rgba(248, 243, 224, 0.7);
  max-width: 700px;
  margin: 0 auto;
}

.pricing-comparison-table {
  margin: 60px 0;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(77, 26, 26, 0.5);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-table thead {
  background: rgba(241, 210, 75, 0.1);
}

.pricing-table th {
  padding: 20px;
  text-align: left;
  color: #f1d24b;
  font-weight: 700;
  font-size: 1.1rem;
  border-bottom: 2px solid rgba(241, 210, 75, 0.3);
}

.pricing-table th:first-child {
  width: 40%;
}

.pricing-table th:not(:first-child) {
  text-align: center;
  width: 20%;
}

.pricing-table td {
  padding: 18px 20px;
  color: #f8f3e0;
  border-bottom: 1px solid rgba(241, 210, 75, 0.1);
}

.pricing-table td:not(:first-child) {
  text-align: center;
}

.pricing-table tbody tr:hover {
  background: rgba(241, 210, 75, 0.05);
}

.pricing-table .bi-check-circle-fill {
  color: #ffe45c;
  font-size: 1.3rem;
}

.pricing-table .bi-x-circle {
  color: rgba(248, 243, 224, 0.3);
  font-size: 1.3rem;
}

.pricing-row-price {
  background: rgba(241, 210, 75, 0.1);
  font-weight: 700;
}

.pricing-row-price td {
  padding: 25px 20px;
  font-size: 1.2rem;
  color: #f1d24b;
}

.pricing-row-price strong {
  font-size: 1.5rem;
  color: #ffe45c;
}

.price-save {
  display: block;
  font-size: 0.85rem;
  color: #ffe45c;
  font-weight: 400;
  margin-top: 5px;
}

.pricing-cta {
  text-align: center;
  margin-top: 50px;
}

.pricing-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: rgba(241, 210, 75, 0.1);
  border: 1px solid rgba(241, 210, 75, 0.3);
  border-radius: 50px;
  color: #f1d24b;
  font-size: 1rem;
  margin-bottom: 30px;
}

.pricing-guarantee i {
  font-size: 1.2rem;
}

.pricing-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 20px 50px;
  background: linear-gradient(135deg, #f1d24b, #ffe45c);
  color: #3b0a24;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(241, 210, 75, 0.3);
}

.pricing-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(241, 210, 75, 0.4);
  gap: 20px;
  color: #3b0a24;
}

@media (max-width: 768px) {
  .pricing-title {
    font-size: 2rem;
  }
  
  .pricing-table {
    font-size: 0.9rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
  }
  
  .pricing-row-price strong {
    font-size: 1.2rem;
  }
  
  .pricing-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   NEW MODERN HEADER & FOOTER STYLES
   ============================================ */

/* Header Styles */
.ganalytics-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ganalytics-header.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.12);
}

.ganalytics-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.ganalytics-logo {
  font-size: 26px;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: -0.5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.ganalytics-logo:hover {
  transform: scale(1.05);
}

.ganalytics-navigation {
  display: flex;
  align-items: center;
  gap: 45px;
}

.ganalytics-nav-link {
  position: relative;
  color: #2d3748;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  padding: 10px 0;
}

.ganalytics-nav-link:hover,
.ganalytics-nav-link.active {
  color: #667eea;
}

.ganalytics-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px 3px 0 0;
}

.ganalytics-dropdown {
  position: relative;
}

.ganalytics-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.ganalytics-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 10px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.ganalytics-dropdown:hover .ganalytics-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ganalytics-dropdown-item {
  display: block;
  padding: 12px 25px;
  color: #2d3748;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.ganalytics-dropdown-item:hover {
  background: #f7fafc;
  color: #667eea;
  padding-left: 30px;
}

.ganalytics-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.ganalytics-menu-toggle span {
  width: 28px;
  height: 3px;
  background: #2d3748;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.ganalytics-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.ganalytics-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.ganalytics-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Footer Styles */
.ganalytics-footer-new {
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: #e2e8f0;
  padding: 0;
  margin-top: 100px;
  position: relative;
}

.ganalytics-footer-waves {
  position: relative;
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.ganalytics-wave {
  width: 100%;
  height: 100%;
  display: block;
}

.ganalytics-footer-content {
  padding: 80px 0 0;
}

.ganalytics-footer-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px 60px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.8fr;
  gap: 60px;
}

.ganalytics-footer-column {
  display: flex;
  flex-direction: column;
}

.ganalytics-footer-logo-section {
  margin-bottom: 25px;
}

.ganalytics-footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin: 0 0 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ganalytics-footer-logo-line {
  width: 50px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.ganalytics-footer-description {
  color: #a0aec0;
  line-height: 1.8;
  font-size: 14px;
  margin-bottom: 30px;
}

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

.ganalytics-social-btn {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
  position: relative;
  overflow: hidden;
}

.ganalytics-social-btn:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.ganalytics-social-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.ganalytics-social-btn:hover .ganalytics-social-ripple {
  transform: scale(2);
  opacity: 0;
}

.ganalytics-footer-heading {
  color: white;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.ganalytics-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 2px;
}

.ganalytics-footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ganalytics-footer-nav-list li {
  margin-bottom: 15px;
}

.ganalytics-footer-nav-link {
  color: #a0aec0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ganalytics-link-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.ganalytics-footer-nav-link:hover {
  color: #667eea;
}

.ganalytics-footer-nav-link:hover .ganalytics-link-icon {
  transform: translateX(5px);
}

.ganalytics-footer-contact-new {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ganalytics-contact-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.ganalytics-contact-icon-wrapper {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.ganalytics-contact-icon-wrapper i {
  font-size: 20px;
  color: #667eea;
}

.ganalytics-contact-text {
  flex: 1;
}

.ganalytics-contact-text p {
  margin: 0 0 5px;
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.6;
}

.ganalytics-contact-text p strong {
  color: white;
  font-weight: 600;
}

.ganalytics-contact-text a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ganalytics-contact-text a:hover {
  color: #764ba2;
}

.ganalytics-footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 40px;
}

.ganalytics-footer-bottom-new {
  padding: 35px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.ganalytics-footer-copyright {
  color: #a0aec0;
  font-size: 13px;
  margin: 0;
  line-height: 1.6;
}

.ganalytics-scroll-top-btn {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.ganalytics-scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.ganalytics-scroll-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  transition: transform 0.6s ease;
}

.ganalytics-scroll-top-btn:hover .ganalytics-scroll-ripple {
  transform: scale(2);
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .ganalytics-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .ganalytics-navigation {
    gap: 30px;
  }
  
  .ganalytics-header-inner {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .ganalytics-header-inner {
    padding: 0 20px;
    height: 75px;
  }
  
  .ganalytics-logo {
    font-size: 22px;
  }
  
  .ganalytics-navigation {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }
  
  .ganalytics-navigation.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .ganalytics-nav-link {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
    display: block;
  }
  
  .ganalytics-nav-link:last-child {
    border-bottom: none;
  }
  
  .ganalytics-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f7fafc;
    margin: 10px 0 0 20px;
    border-radius: 8px;
  }
  
  .ganalytics-menu-toggle {
    display: flex;
  }
  
  .ganalytics-footer-main {
    padding: 0 20px 50px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ganalytics-footer-bottom-new {
    padding: 30px 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .ganalytics-footer-divider {
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  .ganalytics-logo {
    font-size: 20px;
  }
  
  .ganalytics-footer-logo {
    font-size: 24px;
  }
  
  .ganalytics-footer-heading {
    font-size: 16px;
  }
  
  .ganalytics-footer-copyright {
    font-size: 12px;
  }
}

/* Add padding for fixed header */
body {
  padding-top: 85px;
}

@media (max-width: 768px) {
  body {
    padding-top: 75px;
  }
  
  .ganalytics-nav {
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 30px 20px;
    gap: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - 75px);
    overflow-y: auto;
  }
  
  .ganalytics-nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .ganalytics-nav-item {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid #e2e8f0;
    display: block;
  }
  
  .ganalytics-nav-item:last-child {
    border-bottom: none;
  }
  
  .ganalytics-nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f7fafc;
    margin: 10px 0 0 20px;
    border-radius: 8px;
  }
  
  .ganalytics-mobile-toggle {
    display: flex;
  }
  
  .ganalytics-header-container {
    padding: 0 20px;
    height: 75px;
  }
  
  .ganalytics-header-cta {
    display: none;
  }
}

/* ============================================
   GANALYTICS HERO SECTION - NEW DESIGN
   ============================================ */
.ganalytics-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.ganalytics-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.ganalytics-hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ganalytics-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(102, 126, 234, 0.3);
  border-radius: 50%;
  animation: ganalyticsFloat 15s infinite ease-in-out;
}

.ganalytics-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.ganalytics-particle:nth-child(2) { left: 30%; animation-delay: 2s; }
.ganalytics-particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.ganalytics-particle:nth-child(4) { left: 70%; animation-delay: 6s; }
.ganalytics-particle:nth-child(5) { left: 90%; animation-delay: 8s; }
.ganalytics-particle:nth-child(6) { left: 20%; animation-delay: 10s; }

@keyframes ganalyticsFloat {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  50% { transform: translateY(-100px) translateX(50px); opacity: 1; }
}

.ganalytics-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.ganalytics-hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ganalytics-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  filter: blur(60px);
}

.ganalytics-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: ganalyticsPulse 8s infinite ease-in-out;
}

.ganalytics-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation: ganalyticsPulse 10s infinite ease-in-out;
}

.ganalytics-shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ganalyticsPulse 12s infinite ease-in-out;
}

@keyframes ganalyticsPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.ganalytics-hero-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ganalytics-hero-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ganalytics-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: #667eea;
  width: fit-content;
}

.ganalytics-badge-icon {
  font-size: 18px;
}

.ganalytics-hero-heading {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.1;
  color: #1a202c;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ganalytics-hero-line {
  display: block;
}

.ganalytics-hero-accent {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ganalytics-hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
  max-width: 600px;
}

.ganalytics-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ganalytics-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ganalytics-btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.ganalytics-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(102, 126, 234, 0.4);
  color: white;
}

.ganalytics-btn-outline {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.ganalytics-btn-outline:hover {
  background: #667eea;
  color: white;
}

.ganalytics-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.ganalytics-feature-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ganalytics-feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.ganalytics-feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 12px;
  font-size: 24px;
  color: #667eea;
}

.ganalytics-feature-title {
  font-weight: 600;
  color: #1a202c;
  font-size: 14px;
  margin-bottom: 4px;
}

.ganalytics-feature-desc {
  font-size: 12px;
  color: #718096;
}

.ganalytics-hero-image {
  position: relative;
}

.ganalytics-hero-img-wrapper {
  position: relative;
}

.ganalytics-hero-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ganalytics-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

.ganalytics-hero-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.ganalytics-hero-badge-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  animation: ganalyticsFloatCard 6s infinite ease-in-out;
}

.ganalytics-badge-1 {
  top: 20%;
  right: -20px;
  animation-delay: 0s;
}

.ganalytics-badge-2 {
  bottom: 30%;
  left: -20px;
  animation-delay: 2s;
}

.ganalytics-badge-3 {
  top: 60%;
  right: -20px;
  animation-delay: 4s;
}

@keyframes ganalyticsFloatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ganalytics-badge-card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  color: white;
  font-size: 20px;
}

.ganalytics-badge-card-text {
  display: flex;
  flex-direction: column;
}

.ganalytics-badge-card-text strong {
  font-weight: 600;
  color: #1a202c;
  font-size: 14px;
}

.ganalytics-badge-card-text span {
  font-size: 12px;
  color: #718096;
}

.ganalytics-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

.ganalytics-hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.ganalytics-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #718096;
  font-size: 12px;
  font-weight: 500;
}

.ganalytics-scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, #667eea 0%, transparent 100%);
  animation: ganalyticsScrollLine 2s infinite;
}

@keyframes ganalyticsScrollLine {
  0% { height: 0; opacity: 0; }
  50% { height: 40px; opacity: 1; }
  100% { height: 0; opacity: 0; }
}

/* Responsive Hero */
@media (max-width: 1024px) {
  .ganalytics-hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .ganalytics-hero-heading {
    font-size: 48px;
  }
  
  .ganalytics-hero-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ganalytics-hero {
    padding: 100px 0 60px;
  }
  
  .ganalytics-hero-wrapper {
    padding: 0 20px;
  }
  
  .ganalytics-hero-heading {
    font-size: 36px;
  }
  
  .ganalytics-hero-text {
    font-size: 16px;
  }
  
  .ganalytics-hero-badge-card {
    display: none;
  }
}

/* ============================================
   GANALYTICS SERVICES SECTION - NEW DESIGN
   ============================================ */
.ganalytics-services {
  position: relative;
  padding: 100px 0;
  background: white;
}

.ganalytics-services-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.ganalytics-services-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.ganalytics-services-header {
  text-align: center;
  margin-bottom: 60px;
}

.ganalytics-section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 20px;
}

.ganalytics-section-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a202c;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.ganalytics-section-title-line {
  display: block;
}

.ganalytics-section-subtitle {
  font-size: 18px;
  color: #718096;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.ganalytics-service-item {
  position: relative;
}

.ganalytics-service-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ganalytics-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.ganalytics-service-icon-box {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.ganalytics-service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  font-size: 36px;
  color: white;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.ganalytics-service-card:hover .ganalytics-service-icon {
  transform: scale(1.1) rotate(5deg);
}

.ganalytics-service-icon-bg {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 80px;
  height: 80px;
  background: rgba(102, 126, 234, 0.2);
  border-radius: 20px;
  filter: blur(10px);
}

.ganalytics-service-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.ganalytics-service-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}

.ganalytics-service-text {
  font-size: 15px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 20px;
  flex-grow: 1;
}

.ganalytics-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.ganalytics-service-tag {
  padding: 6px 14px;
  background: rgba(102, 126, 234, 0.1);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #667eea;
}

.ganalytics-service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.ganalytics-service-link:hover {
  gap: 12px;
  color: #764ba2;
}

@media (max-width: 1024px) {
  .ganalytics-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ganalytics-services {
    padding: 80px 0;
  }
  
  .ganalytics-services-wrapper {
    padding: 0 20px;
  }
  
  .ganalytics-section-title {
    font-size: 36px;
  }
  
  .ganalytics-services-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GANALYTICS PRICING SECTION - NEW DESIGN
   ============================================ */
.ganalytics-pricing {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.ganalytics-pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.ganalytics-pricing-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.ganalytics-pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.ganalytics-pricing-table-wrapper {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow-x: auto;
  margin-bottom: 40px;
}

.ganalytics-pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.ganalytics-pricing-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.ganalytics-pricing-table th {
  padding: 20px;
  text-align: left;
  font-weight: 600;
  font-size: 16px;
}

.ganalytics-pricing-table th:first-child {
  border-radius: 12px 0 0 0;
}

.ganalytics-pricing-table th:last-child {
  border-radius: 0 12px 0 0;
}

.ganalytics-pricing-table td {
  padding: 20px;
  border-bottom: 1px solid #e2e8f0;
  color: #2d3748;
}

.ganalytics-pricing-table tbody tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

.ganalytics-pricing-table i.bi-check-circle-fill {
  color: #48bb78;
  font-size: 20px;
}

.ganalytics-pricing-table i.bi-x-circle {
  color: #cbd5e0;
  font-size: 20px;
}

.ganalytics-pricing-price-row {
  background: rgba(102, 126, 234, 0.05);
  font-weight: 600;
}

.ganalytics-pricing-price-row td {
  border-bottom: none;
  font-size: 18px;
}

.ganalytics-pricing-price-row strong {
  font-size: 24px;
  color: #667eea;
}

.ganalytics-pricing-save {
  display: block;
  font-size: 14px;
  color: #48bb78;
  font-weight: 500;
  margin-top: 5px;
}

.ganalytics-pricing-footer {
  text-align: center;
}

.ganalytics-pricing-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: white;
  border-radius: 50px;
  font-size: 15px;
  color: #4a5568;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.ganalytics-pricing-guarantee i {
  color: #48bb78;
  font-size: 20px;
}

@media (max-width: 768px) {
  .ganalytics-pricing {
    padding: 80px 0;
  }
  
  .ganalytics-pricing-wrapper {
    padding: 0 20px;
  }
  
  .ganalytics-pricing-table-wrapper {
    padding: 20px;
  }
  
  .ganalytics-pricing-table th,
  .ganalytics-pricing-table td {
    padding: 12px 8px;
    font-size: 14px;
  }
}

/* ============================================
   GANALYTICS TEAM SECTION - NEW DESIGN
   ============================================ */
.ganalytics-team {
  position: relative;
  padding: 100px 0;
  background: white;
}

.ganalytics-team-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.ganalytics-team-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.ganalytics-team-header {
  text-align: center;
  margin-bottom: 60px;
}

.ganalytics-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ganalytics-team-item {
  position: relative;
}

.ganalytics-team-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ganalytics-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.ganalytics-team-img-box {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.ganalytics-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.ganalytics-team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ganalytics-team-card:hover .ganalytics-team-overlay {
  opacity: 1;
}

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

.ganalytics-team-social-item {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  color: #667eea;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.ganalytics-team-social-item:hover {
  background: #667eea;
  color: white;
  transform: translateY(-5px);
}

.ganalytics-team-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ganalytics-team-card:hover .ganalytics-team-glow {
  opacity: 1;
}

.ganalytics-team-details {
  padding: 30px;
  text-align: center;
}

.ganalytics-team-name {
  font-size: 22px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.ganalytics-team-role {
  font-size: 14px;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 15px;
}

.ganalytics-team-line {
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 0 auto 15px;
  border-radius: 2px;
}

.ganalytics-team-bio {
  font-size: 14px;
  line-height: 1.6;
  color: #718096;
}

@media (max-width: 1024px) {
  .ganalytics-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ganalytics-team {
    padding: 80px 0;
  }
  
  .ganalytics-team-wrapper {
    padding: 0 20px;
  }
  
  .ganalytics-team-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   GANALYTICS WHY SECTION - NEW DESIGN
   ============================================ */
.ganalytics-why {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.ganalytics-why-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.ganalytics-why-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ganalytics-why-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  filter: blur(60px);
}

.ganalytics-why-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation: ganalyticsPulse 10s infinite ease-in-out;
}

.ganalytics-why-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation: ganalyticsPulse 12s infinite ease-in-out;
}

.ganalytics-why-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.ganalytics-why-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.ganalytics-why-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ganalytics-why-desc-main {
  font-size: 18px;
  line-height: 1.8;
  color: #4a5568;
}

.ganalytics-why-desc-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #718096;
}

.ganalytics-why-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ganalytics-why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ganalytics-why-item-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 15px;
  font-size: 28px;
  color: #667eea;
  flex-shrink: 0;
}

.ganalytics-why-item-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
}

.ganalytics-why-item-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #718096;
  margin: 0;
}

.ganalytics-why-image {
  position: relative;
}

.ganalytics-why-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ganalytics-why-img-main {
  position: relative;
}

.ganalytics-why-img {
  width: 100%;
  height: auto;
  display: block;
}

.ganalytics-why-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.ganalytics-why-badges {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ganalytics-why-badge-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: white;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  font-weight: 600;
  color: #1a202c;
  animation: ganalyticsFloatCard 6s infinite ease-in-out;
}

.ganalytics-why-badge-item i {
  color: #667eea;
  font-size: 18px;
}

.ganalytics-why-badge-1 {
  top: 15%;
  right: -20px;
  animation-delay: 0s;
}

.ganalytics-why-badge-2 {
  bottom: 30%;
  left: -20px;
  animation-delay: 2s;
}

.ganalytics-why-badge-3 {
  top: 60%;
  right: -20px;
  animation-delay: 4s;
}

.ganalytics-why-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
  filter: blur(40px);
  z-index: -1;
}

@media (max-width: 1024px) {
  .ganalytics-why-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .ganalytics-why {
    padding: 80px 0;
  }
  
  .ganalytics-why-wrapper {
    padding: 0 20px;
  }
  
  .ganalytics-why-badge-item {
    display: none;
  }
}

/* ============================================
   GANALYTICS TESTIMONIALS SECTION - NEW DESIGN
   ============================================ */
.ganalytics-testimonials {
  position: relative;
  padding: 100px 0;
  background: white;
}

.ganalytics-testimonials-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.ganalytics-testimonials-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.ganalytics-testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.ganalytics-testimonial-item {
  position: relative;
}

.ganalytics-testimonial-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ganalytics-testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.ganalytics-testimonial-quote {
  font-size: 48px;
  color: rgba(102, 126, 234, 0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.ganalytics-testimonial-body {
  flex-grow: 1;
  margin-bottom: 30px;
}

.ganalytics-testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  font-style: italic;
}

.ganalytics-testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.ganalytics-testimonial-author {
  display: flex;
  flex-direction: column;
}

.ganalytics-testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 4px;
}

.ganalytics-testimonial-role {
  font-size: 14px;
  color: #718096;
}

.ganalytics-testimonial-stars {
  display: flex;
  gap: 4px;
  color: #fbbf24;
  font-size: 18px;
}

.ganalytics-testimonial-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.ganalytics-testimonial-card:hover .ganalytics-testimonial-glow {
  opacity: 1;
}

@media (max-width: 1024px) {
  .ganalytics-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ganalytics-testimonials {
    padding: 80px 0;
  }
  
  .ganalytics-testimonials-wrapper {
    padding: 0 20px;
  }
  
  .ganalytics-testimonials-grid {
    grid-template-columns: 1fr;
  }
}