/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 10px base for easier rem calculations */
  overflow-x: hidden;
}

@media (max-width: 768px) {
  html {
    font-size: 56.25%; /* 9px base on mobile */
  }
}

@media (min-width: 1281px) {
  html {
    font-size: 62.5%;
  }
}

@media (min-width: 1661px) {
  html {
    font-size: 62.5%;
  }
}

body {
  margin: 0;
  font-family: 'Roboto', system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.6rem; /* 16px at 10px base */
  font-weight: 400;
  line-height: 1.6;
  color: var(--body-text-color);
  background-color: var(--body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 768px) {
  body {
    font-size: 1.6rem; /* Consistent 16px equivalent */
  }
}

/* CSS Variables */
:root {
  /* Colors - Playful Tech Palette */
  --primary-color1: #2D7D7D;
  --primary-color2: #2C3E50;
  --primary-color3: #fff;
  --secondary-color1: #ffffff;
  --secondary-color2: #FF6B6B;
  --secondary-color3: #FF6B6B;
  --secondary-color5: #2D7D7D;
  --body-bg: #F7F3E9;
  --body-bg-alt: #2C3E50;
  --body-text-color: #2C3E50;
  --body-text-color-alt: #fff;
  
  /* Typography */
  --font-family-primary: 'Roboto', sans-serif;
  --font-family-secondary: 'Raleway', sans-serif;
  --base-text-size: 1.6rem;
  --h1-font-size: 8rem;
  --h1-font-size-mobile: 5.5rem;
  --h2-font-size: 5.8rem;
  --h2-font-size-mobile: 4rem;
  --h3-font-size: 3.8rem;
  --h3-font-size-mobile: 3rem;
  
  /* Layout */
  --content-width: 1440px;
  --page-gutter: 20px;
  --vertical-gap: 5vmin;
  --header-height: 95px;
  --base-transition: 0.3s;
}

@media (max-width: 1112px) {
  :root {
    --page-gutter: 20px;
    --vertical-gap: 20px;
    --content-width: 100%;
    --header-height: 60px;
    --base-text-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 15px;
    --h1-font-size: 5.8rem;
    --h1-font-size-mobile: 4.8rem;
    --h2-font-size: 4.2rem;
    --h2-font-size-mobile: 3.8rem;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color2);
}

h1 {
  font-size: var(--h1-font-size);
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 0.7em;
}

@media (max-width: 768px) {
  h1 {
    font-size: var(--h1-font-size-mobile);
  }
}

h2 {
  font-size: var(--h2-font-size);
  line-height: 1.2;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  h2 {
    font-size: var(--h2-font-size-mobile);
  }
}

h3 {
  font-size: clamp(var(--h3-font-size-mobile), 3vw + 1rem, var(--h3-font-size));
  line-height: 1.2;
  margin-bottom: 0.5em;
}

p {
  margin-top: 0;
  margin-bottom: 1em;
}

/* Text Effects */
.text-glow {
  background: linear-gradient(93.35deg, var(--secondary-color1) 0.57%, var(--secondary-color1) 82.96%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 15px rgba(255, 255, 255, 0.5);
}

.text-glow-blue {
  background: linear-gradient(131.8deg, #FF6B6B 0%, #2D7D7D 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: #FF6B6B;
  color: transparent;
  text-shadow: 0px 0px 10px rgba(255, 107, 107, 0.5);
}

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

/* Layout */
.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

.site-content {
  flex-grow: 1;
}

.container {
  margin-inline: auto;
  width: 100%;
  max-width: calc(var(--content-width) + var(--page-gutter) * 2);
  padding-inline: var(--page-gutter);
}

/* Header */
.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  transition: all var(--base-transition);
}

.site-header__main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.2vmin 1vmin 2.2vmin 5.2vmin;
  min-height: var(--header-height);
}

@media (max-width: 767px) {
  .site-header__row {
    min-height: 53px;
    padding: 1rem 1.5rem 1rem 0.5rem;
  }
}

.site-header__col {
  display: flex;
  align-items: center;
}

.site-header__col.-left {
  justify-content: flex-start;
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .site-header__col.-left {
    margin-left: 0;
    padding-left: 0;
  }
}

.site-header__col.-center {
  justify-content: center;
  flex-grow: 1;
}

.site-header__col.-right {
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-header__logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: saturate(0.5);
}

.company-name-text {
  font-size: clamp(2.7rem, 3.75vw + 0.75rem, 4.8rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.1em;
  margin: 0;
  margin-left: 15px;
  white-space: nowrap;
  background: linear-gradient(93.35deg, #20b2aa 0.57%, #20b2aa 82.96%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 15px rgba(32, 178, 170, 0.5);
  display: inline-block;
}

@media (max-width: 1112px) {
  .site-header__logo {
    gap: 0;
  }

  .site-header__logo img {
    height: 52.5px;
    width: auto;
  }
  
  .company-name-text {
    font-size: clamp(2.1rem, 3vw + 0.45rem, 3rem);
  }
}

@media (max-width: 767px) {
  .site-header__logo {
    gap: 0;
    margin-left: 0;
  }

  .site-header__logo img {
    height: 45px;
    width: auto;
  }

  .company-name-text {
    font-size: 2.4rem;
    letter-spacing: 0.05em;
    margin-left: 8px;
  }
}

/* Navigation */
.nav-secondary__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 3vh;
}

@media (min-width: 1113px) {
  .nav-secondary__links {
    display: flex;
  }
}

.nav-secondary__links a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  transition: color var(--base-transition);
}

.nav-secondary__links a:hover {
  color: var(--secondary-color3);
}

/* Let's Talk Button */
.lets-talk-btn {
  display: none;
  background: linear-gradient(135deg, #2D7D7D 0%, #20B2AA 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 1.2rem 2.4rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--base-transition);
  box-shadow: 0 4px 15px rgba(45, 125, 125, 0.3);
  margin-right: 2rem;
}

@media (min-width: 1113px) {
  .lets-talk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.lets-talk-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 125, 125, 0.4);
  background: linear-gradient(135deg, #20B2AA 0%, #2D7D7D 100%);
}

/* Mobile Navigation */
.nav-main__btn {
  display: flex;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 100;
}

@media (min-width: 1113px) {
  .nav-main__btn {
    display: none;
  }
}

.burger-icon {
  width: 39px;
  height: 30px;
  position: relative;
}

.burger-line {
  background-color: #fff;
  display: block;
  width: 100%;
  height: 4.5px;
  margin: 9px 0;
  transition: 0.3s ease-in-out;
  transform-origin: center;
}

.burger-line:nth-child(2) {
  max-width: 70%;
  margin-left: 30%;
}

.nav-main__btn.is-active .burger-line {
  opacity: 0;
}

.nav-cross {
  position: absolute;
  height: 50px;
  width: 50px;
  transform: rotate(45deg) scale(0.7);
  right: -12px;
  top: -15px;
  z-index: 9;
}

.nav-cross:before,
.nav-cross:after {
  content: '';
  position: absolute;
  background-color: #fff;
  transition: 0.3s ease-in-out;
}

.nav-cross:before {
  height: 0;
  width: 3px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.nav-cross:after {
  width: 0;
  height: 3px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-main__btn.is-active .nav-cross:before {
  height: 100%;
}

.nav-main__btn.is-active .nav-cross:after {
  width: 100%;
}

.nav-main__wrap {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--body-bg-alt);
  transform: translateX(100%);
  transition: transform 0.5s ease;
  z-index: 98;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, #2D7D7D 0%, #20B2AA 50%, #4ECDC4 100%);
}

.nav-active .nav-main__wrap {
  transform: translateX(0);
}

.nav-main {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.nav-main__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-main__links .menu-item {
  margin-bottom: 30px;
}

.main-menu-link {
  color: #fff;
  text-decoration: none;
  font-size: 45px;
  font-weight: 700;
  text-transform: capitalize;
  display: block;
  padding: 15px 0;
  transition: color var(--base-transition);
}

.main-menu-link:hover {
  color: var(--secondary-color3);
}

/* Special styling for Let's Talk in mobile menu */
.lets-talk-mobile {
  background: var(--secondary-color3);
  color: #fff !important;
  padding: 20px 40px;
  border-radius: 50px;
  display: inline-block;
  margin-top: 20px;
  font-size: 32px;
}

.lets-talk-mobile:hover {
  background: var(--secondary-color2);
  transform: scale(1.05);
}

/* Prevent scroll when menu is open */
.nav-active {
  overflow: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  color: #fff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1112px) {
  .hero-subtitle {
    font-size: 2rem;
  }
}

.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7em 1.4em;
  font-family: var(--font-family-primary);
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--base-transition);
  text-transform: none;
  border-radius: 0;
}

@media (max-width: 1112px) {
  .c-button {
    font-size: 27px;
  }
}

.btn-primary {
  color: var(--primary-color3);
  background: linear-gradient(94deg, #20B2AA -2.26%, #008B8B 63.14%);
  border: 0;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
}

.btn-secondary {
  color: var(--primary-color3);
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid var(--secondary-color1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Phone Button Styling */
.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--base-transition);
}

.phone-button svg {
  flex-shrink: 0;
  transition: transform var(--base-transition);
}

.phone-button:hover svg {
  transform: scale(1.1);
}

/* Ensure phone button looks good on mobile */
@media (max-width: 1112px) {
  .phone-button {
    font-size: 24px;
  }
  
  .phone-button svg {
    width: 24px;
    height: 24px;
    margin-right: 9px !important;
  }
}

/* Logo Section */
.logo-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2C3E50 0%, #2D7D7D 100%);
  overflow: hidden;
  position: relative;
}

.logo-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.logo-slider {
  width: 100%;
  position: relative;
  z-index: 2;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scroll 20s linear infinite;
}

.logo-track img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  opacity: 1;
  transition: all var(--base-transition);
  filter: grayscale(0%) saturate(0.8) brightness(1.1);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0%) saturate(1) brightness(1.2);
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 1);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Value Proposition Section */
.value-proposition-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.value-proposition-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.value-prop-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 8rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 1112px) {
  .value-prop-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
}

.value-prop-title {
  color: var(--primary-color2);
  font-size: clamp(3.2rem, 4vw + 1rem, 5.5rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.value-prop-subtitle {
  color: var(--primary-color2);
  font-size: 2.4rem;
  opacity: 0.8;
  margin-bottom: 4rem;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 1112px) {
  .value-prop-subtitle {
    font-size: 2rem;
  }
}

.value-prop-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Value prop grid within why-us cards */
.why-us-card .value-prop-grid {
  margin-bottom: 0;
}

.value-prop-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  border: 1px solid rgba(45, 125, 125, 0.1);
  transition: all var(--base-transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Value prop items within why-us cards */
.why-us-card .value-prop-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.value-prop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

/* Value prop item hover within why-us cards */
.why-us-card .value-prop-item:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.value-prop-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #E55555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(229, 85, 85, 0.3);
}

@media (max-width: 1112px) {
  .value-prop-icon {
    width: 105px;
    height: 105px;
  }
}

.icon-number {
  color: white;
  font-size: 2rem;
  font-weight: 900;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1112px) {
  .icon-number {
    font-size: 3rem;
  }
}

.icon-check {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1112px) {
  .icon-check {
    font-size: 3.75rem;
  }
}

.icon-lightbulb {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1112px) {
  .icon-lightbulb {
    font-size: 3.75rem;
  }
}

.icon-handshake {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-handshake svg {
  width: 32px;
  height: 32px;
  fill: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (max-width: 1112px) {
  .icon-handshake svg {
    width: 48px;
    height: 48px;
  }
}

.icon-chart {
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1112px) {
  .icon-chart {
    font-size: 3.75rem;
  }
}

.icon-support-large {
  color: white;
  font-size: 3.5rem;
  font-weight: bold;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1112px) {
  .icon-support-large {
    font-size: 5.25rem;
  }
}

.value-prop-details h4 {
  color: var(--primary-color2);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Value prop details within why-us cards */
.why-us-card .value-prop-details h4 {
  color: var(--primary-color3);
}

.value-prop-details p {
  color: var(--primary-color2);
  opacity: 0.8;
  font-size: 1.7rem;
  line-height: 1.5;
  margin: 0;
}

/* Value prop details text within why-us cards */
.why-us-card .value-prop-details p {
  color: var(--primary-color3);
  opacity: 0.9;
}

@media (max-width: 1112px) {
  .value-prop-item {
    text-align: left;
  }
  
  .value-prop-details h4 {
    font-size: 2.85rem;
  }
  
  .value-prop-details p {
    font-size: 2.25rem;
  }
}

.value-prop-cta {
  margin-top: 2rem;
}

.value-prop-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition: transform var(--base-transition);
}

.value-prop-image:hover {
  transform: translateY(-10px) scale(1.02);
}

.value-prop-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--base-transition);
}

.value-prop-image:hover img {
  transform: scale(1.05);
}

@media (max-width: 1112px) {
  .value-prop-image {
    order: -1;
  }
  
  .value-prop-image img {
    height: 350px;
  }
}

/* Why Us Section */
.why-us-section {
  padding: 8rem 0 0;
  background: var(--body-bg);
}

.why-us-section .section-header {
  padding: 0 0 3rem;
  background: var(--body-bg);
}

.why-us-section .section-title {
  color: var(--primary-color2);
  font-size: clamp(var(--h1-font-size-mobile), 4.45vw + 1.5rem, var(--h1-font-size));
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 0.7em;
}

.why-us-section .section-subtitle {
  color: var(--primary-color2);
}

/* Why Us Cards */
.why-us-card {
  width: 100%;
  padding: 8rem 0;
  background: linear-gradient(135deg, var(--body-bg-alt) 0%, var(--primary-color1) 100%);
  margin-bottom: 0;
}

.why-us-card.alternate {
  background: linear-gradient(135deg, var(--primary-color1) 0%, var(--body-bg-alt) 100%);
}

.why-us-card-content {
  max-width: calc(var(--content-width) + var(--page-gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--page-gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

@media (max-width: 1112px) {
  .why-us-card-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .why-us-card {
    padding: 6rem 0;
  }
}

/* Card Text */
.why-us-card-text {
  color: var(--primary-color3);
}

.why-us-card-icon {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.why-us-card-text h3 {
  color: var(--primary-color3);
  font-size: clamp(2.4rem, 3vw + 1rem, 4rem);
  margin-bottom: 2rem;
  font-weight: 700;
}

/* Enhanced styling for the Professional Quality header - SIGNIFICANTLY BIGGER */
.why-us-card:first-of-type .why-us-card-text h3 {
  font-size: clamp(7.5rem, 10vw + 3rem, 14rem);
  font-weight: 900;
  margin-bottom: 4rem;
  text-align: center;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
  letter-spacing: 0.02em;
  line-height: 1.1;
  position: relative;
  padding: 3rem 0;
}

/* Add a subtle glow effect behind the text */
.why-us-card:first-of-type .why-us-card-text h3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
  border-radius: 20px;
  z-index: -1;
}

/* Mobile adjustments for the enhanced header - SIGNIFICANTLY BIGGER */
@media (max-width: 1112px) {
  .why-us-card:first-of-type .why-us-card-text h3 {
    font-size: clamp(5.5rem, 9vw + 2rem, 9rem);
    padding: 2.5rem 0;
    line-height: 1.2;
  }
}

.card-description {
  color: var(--primary-color3);
  font-size: 2.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.5;
}

@media (max-width: 1112px) {
  .card-description {
    font-size: 2.85rem;
  }
}

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

.card-features li {
  color: var(--primary-color3);
  opacity: 0.9;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  padding-left: 3rem;
  position: relative;
  line-height: 1.6;
}

@media (max-width: 1112px) {
  .card-features li {
    font-size: 2.4rem;
  }
}

.card-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color3);
  font-weight: bold;
  font-size: 2rem;
}

.card-features li strong {
  color: var(--secondary-color3);
  font-weight: 700;
}

/* Card Images */
.why-us-card-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transition: transform var(--base-transition);
}

.why-us-card:hover .why-us-card-image {
  transform: translateY(-10px);
}

.why-us-card-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform var(--base-transition);
}

@media (max-width: 1112px) {
  .why-us-card-image img {
    height: 400px;
  }
}

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

/* Alternate card layout (image on left) */
@media (min-width: 1113px) {
  .why-us-card.alternate .why-us-card-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile: always image first */
@media (max-width: 1112px) {
  .why-us-card-text {
    order: 2;
  }
  
  .why-us-card-image {
    order: 1;
  }
}

/* Featured Work Section */
.featured-work {
  padding: 10rem 0;
  background: var(--body-bg);
  overflow: hidden;
}

.section-header {
  margin-bottom: 6rem;
}

.section-title {
  margin-bottom: 2rem;
}

.section-subtitle {
  font-size: 2.2rem;
  color: var(--primary-color2);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

/* Work Carousel */
.work-carousel {
  width: 100%;
  position: relative;
  /* Ensure no masking or gradient overlays */
  background: transparent;
  mask: none;
  -webkit-mask: none;
}

.work-track {
  display: flex;
  gap: 4rem;
  animation: workScroll 25s linear infinite;
  width: fit-content;
}

/* Fix for greying issue - ensure work items maintain full opacity and colors */
.work-track .work-item {
  opacity: 1 !important;
  filter: none !important;
  transform: translateZ(0); /* Force hardware acceleration */
  backface-visibility: hidden; /* Prevent flickering */
}

/* Ensure work item images don't get greyed out */
.work-track .work-item .work-image img {
  opacity: 1 !important;
  filter: none !important;
}

/* Ensure work item content stays fully visible */
.work-track .work-item .work-content,
.work-track .work-item .work-content h3,
.work-track .work-item .work-content p {
  opacity: 1 !important;
  color: inherit !important;
}

/* Force all work items to maintain full visibility during animation */
.work-track .work-item * {
  opacity: 1 !important;
  filter: none !important;
  will-change: transform; /* Optimize for animation */
}

/* Ensure background colors stay solid */
.work-track .work-item {
  background: #fff !important;
}

.work-track:hover {
  animation-play-state: paused;
}

@keyframes workScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Prevent any unwanted effects during carousel animation */
.work-carousel {
  overflow: hidden;
  position: relative;
}

.work-carousel::before,
.work-carousel::after {
  display: none; /* Remove any pseudo-element overlays that might cause greying */
}

/* Legacy grid for fallback */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 4rem;
}

@media (max-width: 1112px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .work-track {
    gap: 3rem;
  }
}

.work-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform var(--base-transition), box-shadow var(--base-transition);
  flex-shrink: 0;
  width: 500px;
}

@media (max-width: 1112px) {
  .work-item {
    width: 350px;
  }
}

@media (max-width: 767px) {
  .work-item {
    width: 300px;
  }
}

.work-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work-image {
  height: 300px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--base-transition);
}

.work-image a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  cursor: pointer;
}

.work-item:hover .work-image img {
  transform: scale(1.05);
}

.work-content {
  padding: 3rem;
}

.work-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-color2);
}

.work-content p {
  color: var(--primary-color2);
  opacity: 0.8;
  margin-bottom: 2rem;
}

.work-link {
  color: var(--primary-color1);
  text-decoration: none;
  font-weight: 700;
  transition: color var(--base-transition);
}

.work-link:hover {
  color: var(--secondary-color2);
}

/* Services Section */
.services-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--body-bg-alt) 0%, var(--primary-color1) 100%);
}

.services-section .section-title,
.services-section .section-subtitle {
  color: var(--primary-color3);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.service-item {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--base-transition), background var(--base-transition);
}

.service-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.08);
}

.service-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.service-item h3 {
  color: var(--primary-color3);
  margin-bottom: 1.5rem;
}

.service-item p {
  color: var(--primary-color3);
  opacity: 0.9;
}

/* Stats Section */
.stats-section {
  padding: 8rem 0;
  background: var(--body-bg);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  text-align: center;
}

.stat-number {
  font-size: 6rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

@media (max-width: 1112px) {
  .stat-number {
    font-size: 6rem;
  }
}

.stat-label {
  font-size: 1.8rem;
  color: var(--primary-color2);
  opacity: 0.8;
  font-weight: 500;
}

@media (max-width: 1112px) {
  .stat-label {
    font-size: 2.7rem;
  }
}

/* Contact Section */
.contact-section {
  padding: 10rem 0;
  background: linear-gradient(135deg, var(--body-bg-alt) 0%, var(--primary-color1) 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

@media (max-width: 1112px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.contact-info h2 {
  color: var(--primary-color3);
  margin-bottom: 2rem;
}

.contact-info p {
  color: var(--primary-color3);
  opacity: 0.9;
  font-size: 2rem;
  margin-bottom: 3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  color: var(--primary-color3);
  font-size: 1.8rem;
}

@media (max-width: 1112px) {
  .contact-item {
    font-size: 2.7rem;
  }
}

.contact-item strong {
  color: var(--secondary-color3);
  margin-right: 1rem;
}

.hidden-locations {
  color: var(--primary-color3);
}

/* Form Styles */
.form {
  background: rgba(255, 255, 255, 0.05);
  padding: 4rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-row {
  margin-bottom: 2rem;
}

.form input,
.form textarea {
  width: 100%;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--primary-color3);
  font-size: 1.6rem;
  transition: border-color var(--base-transition), background var(--base-transition);
}

@media (max-width: 1112px) {
  .form input,
  .form textarea {
    font-size: 2.4rem;
    padding: 2.25rem;
  }
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--secondary-color3);
  background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--body-bg-alt) 0%, var(--primary-color1) 100%);
  color: var(--primary-color3);
  padding: 5rem 0 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (max-width: 1112px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  filter: saturate(0.5);
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

@media (max-width: 1112px) {
  .footer-links {
    justify-content: center;
    gap: 2rem;
  }
}

.footer-links a {
  color: var(--primary-color3);
  text-decoration: none;
  font-size: 2.4rem;
  font-weight: 500;
  transition: color var(--base-transition);
}

@media (max-width: 1112px) {
  .footer-links a {
    font-size: 2.4rem;
  }
}

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

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.footer-social a {
  color: var(--primary-color3);
  transition: color var(--base-transition), transform var(--base-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  color: var(--secondary-color3);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 2.1rem;
  opacity: 0.8;
}

@media (max-width: 1112px) {
  .footer-bottom p {
    font-size: 2.1rem;
  }
}

/* Responsive Design */
@media (max-width: 1112px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .c-button {
    width: 100%;
    max-width: 300px;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--secondary-color3);
  outline-offset: 2px;
}

/* Loading states */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top-color: var(--primary-color1);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* DIY Option Section */
.diy-option-section {
  margin-top: 40px;
  padding: 30px 20px;
  background: linear-gradient(135deg, rgba(45, 125, 125, 0.05) 0%, rgba(44, 62, 80, 0.05) 100%);
  border-radius: 12px;
}

.diy-option-content p {
  font-size: 2rem;
  color: var(--body-text-color);
  margin: 0;
}

.diy-link {
  color: var(--primary-color1);
  font-weight: 600;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.diy-link:hover {
  color: var(--secondary-color2);
  text-decoration: none;
}

/* Pricing Section */
.pricing-section {
  padding: 10rem 0;
  background: var(--body-bg);
}

.pricing-section .section-title {
  color: var(--primary-color2);
  margin-bottom: 1rem;
}

.pricing-section .section-subtitle {
  color: var(--primary-color2);
  font-size: 2.4rem;
  opacity: 0.8;
  margin-bottom: 6rem;
  font-weight: 500;
}

@media (max-width: 1112px) {
  .pricing-section .section-subtitle {
    font-size: 2rem;
  }
}

/* Main Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  margin-bottom: 8rem;
}

@media (max-width: 1112px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
  }
}

/* Pricing Cards */
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 4rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all var(--base-transition);
  position: relative;
  border: 2px solid transparent;
}

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

.pricing-card.featured {
  border-color: var(--secondary-color2);
  transform: scale(1.05);
  background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

/* Pricing Badge */
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color2);
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Pricing Header */
.pricing-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}

.pricing-header h3 {
  color: var(--primary-color2);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
}

.price-currency {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color1);
}

.price-amount {
  font-size: 6rem;
  font-weight: 900;
  color: var(--primary-color1);
  line-height: 1;
}

.price-text {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--primary-color1);
  text-align: center;
}

@media (max-width: 1112px) {
  .pricing-header h3 {
    font-size: 2.4rem;
  }
  
  .price-currency {
    font-size: 2.5rem;
  }
  
  .price-amount {
    font-size: 5rem;
  }
  
  .price-text {
    font-size: 2.8rem;
  }
}

/* Pricing Features */
.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  color: var(--primary-color2);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
  position: relative;
  line-height: 1.5;
}

.pricing-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color2);
  font-weight: bold;
  font-size: 2rem;
}

@media (max-width: 1112px) {
  .pricing-features li {
    font-size: 2.4rem;
  }
}

/* Hosting Section */
.hosting-section {
  margin-top: 6rem;
  padding-top: 6rem;
  border-top: 2px solid #eee;
}

.hosting-header {
  margin-bottom: 5rem;
}

.hosting-header h3 {
  color: var(--primary-color2);
  font-size: clamp(2.4rem, 3vw + 1rem, 3.8rem);
  font-weight: 600;
  line-height: 1.3;
  max-width: 800px;
  margin: 0 auto;
}

/* Hosting Container */
.hosting-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 1112px) {
  .hosting-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Hosting Groups */
.hosting-group {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border: 3px solid transparent;
  transition: all var(--base-transition);
  position: relative;
}

.hosting-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Get Online Group (Domain) */
.get-online-group {
  border-color: #4ECDC4;
  background: linear-gradient(135deg, #f0fffe 0%, #e0fffe 100%);
}

.get-online-group:hover {
  border-color: #3bb5b0;
}

/* Stay Online Group (Hosting) */
.stay-online-group {
  border-color: #2D7D7D;
  background: linear-gradient(135deg, #f8fdfd 0%, #e8f5f5 100%);
}

.stay-online-group:hover {
  border-color: #1f5a5a;
}

/* Hosting Group Headers */
.hosting-group-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.hosting-group-header h4 {
  color: var(--primary-color2);
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
  padding: 1rem 2rem;
  border-radius: 12px;
  display: inline-block;
  position: relative;
  z-index: 2;
}

/* Get Online Header Styling */
.get-online-group .hosting-group-header h4 {
  background: linear-gradient(135deg, #4ECDC4 0%, #3bb5b0 100%);
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Stay Online Header Styling */
.stay-online-group .hosting-group-header h4 {
  background: linear-gradient(135deg, #2D7D7D 0%, #1f5a5a 100%);
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hosting Group Content */
.hosting-group-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Hosting cards within groups - adjust grid for Stay Online */
.stay-online-group .hosting-group-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 768px) {
  .stay-online-group .hosting-group-content {
    grid-template-columns: 1fr;
  }
}

/* Hosting Grid (fallback for old structure) */
.hosting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

@media (max-width: 1112px) {
  .hosting-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Hosting Cards */
.hosting-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all var(--base-transition);
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.hosting-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.8);
}

.hosting-card.featured {
  border-color: var(--secondary-color2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 255, 0.95) 100%);
}

.hosting-card.featured:hover {
  border-color: var(--secondary-color2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 249, 255, 1) 100%);
}

/* Hosting Badge */
.hosting-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color2);
  color: #fff;
  padding: 0.6rem 1.8rem;
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hosting Icons */
.hosting-icon {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hosting-icon svg {
  transition: transform var(--base-transition);
}

.hosting-card:hover .hosting-icon svg {
  transform: scale(1.1);
}

/* Hosting Content */
.hosting-card h4,
.hosting-card h5 {
  color: var(--primary-color2);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hosting-price {
  color: var(--primary-color1);
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.hosting-description {
  color: var(--primary-color2);
  font-size: 1.6rem;
  opacity: 0.8;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1112px) {
  .hosting-card h4,
  .hosting-card h5 {
    font-size: 2rem;
  }
  
  .hosting-price {
    font-size: 2.4rem;
  }
  
  .hosting-description {
    font-size: 1.5rem;
  }
  
  .hosting-group {
    padding: 2rem;
  }
  
  .hosting-group-header h4 {
    font-size: 2.4rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Domain Card Specific Styling */
.domain-card .hosting-price {
  color: var(--primary-color2);
  font-weight: 600;
  font-size: 2rem;
}

@media (max-width: 1112px) {
  .domain-card .hosting-price {
    font-size: 1.8rem;
  }
}

/* Thumbtack Review Widget */
#tt-review-widget-star {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-width: 200px;
  border: 2px solid #f0f0f0;
  transition: all 0.3s ease;
  font-family: var(--font-family-primary);
}

#tt-review-widget-star:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.tt-logo {
  width: 80px;
  height: auto;
  margin-bottom: 8px;
  display: block;
}

#tt-review-widget-star a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

#tt-review-widget-star a:hover {
  color: #009CFF;
}

#tt-dynamic {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

#tt-dynamic img {
  width: 16px;
  height: 16px;
}

#tt-dynamic span {
  font-size: 12px;
  color: #666;
  margin-left: 5px;
  font-weight: 500;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  #tt-review-widget-star {
    bottom: 15px;
    left: 15px;
    max-width: 180px;
    padding: 12px;
  }
  
  .tt-logo {
    width: 70px;
  }
  
  #tt-review-widget-star a {
    font-size: 13px;
  }
  
  #tt-dynamic img {
    width: 14px;
    height: 14px;
  }
  
  #tt-dynamic span {
    font-size: 11px;
  }
}

/* Ensure widget stays above other elements */
#tt-review-widget-star {
  z-index: 9999;
}

/* Success Page Styles */
.success-section {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.success-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-info-box {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.contact-info-box h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.next-steps li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.2rem;
}

.contact-info-box .contact-details {
    border-top: 1px solid #dee2e6;
    padding-top: 1.5rem;
    text-align: center;
}

.contact-info-box .contact-details p {
    margin-bottom: 1rem;
    color: #666;
}

.contact-info-box .contact-item {
    display: inline-block;
    margin: 0 1rem;
    color: #555;
}

.contact-info-box .contact-item a {
    color: #2D7D7D;
    text-decoration: none;
    font-weight: 500;
}

.contact-info-box .contact-item a:hover {
    color: #1a5555;
    text-decoration: underline;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.action-buttons .c-button {
    min-width: 200px;
}

@media (max-width: 768px) {
    .success-content h2 {
        font-size: 2rem;
    }
    
    .success-message {
        font-size: 1.1rem;
    }
    
    .contact-info-box {
        padding: 1.5rem;
    }
    
    .contact-info-box .contact-item {
        display: block;
        margin: 0.5rem 0;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}
