﻿/*** Fonts ***/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Public+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@font-face {
  font-family: "TrainedAnd";
  src: url("../fonts/matter-medium.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;}

/*** Common ***/
body {
  background-color: #000;
  margin: 0;
  padding: 0;}

* { 
  box-sizing: border-box;}

/*** Campaign Bar ***/
.promo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(90deg, #161D26, #394D59, #697F8C, #394D59, #161D26);
  background-size: 200% auto;
  animation: bgGradientMove 8s linear infinite;}

@keyframes bgGradientMove {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }}

.promo-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 16px;
  border-radius: 9999px;
  transition: background-color 300ms ease;}

.promo-inner p {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  margin: 0;}

.promo-link:hover .promo-inner {
  background-color: rgba(255, 255, 255, 0.12);}

.promo-icon {
  margin-top: 1px;}

.promo-icon path {
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;}

/*** Header ***/
.site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background-image: url('images/backgrounds/photo2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;}

.header-bar {
  height: 90px;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
  position: relative;}

/* Nav Logo */
.logo {
  position: absolute;
  left: 20px;
  z-index: 1200;}

.logo img {
  height: 55px;
  transition: opacity 0.25s ease;}

.logo img.logo-dark {
  display: none;}

/* Nav Links */
.nav-desktop {
  display: flex;
  gap: 25px;
  align-items: center;
  flex: 1;
  justify-content: center;
  max-width: 800px;}

.nav-desktop a {
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-size: 15px;
  color: #eee;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  gap: 3px;}

.nav-desktop a:hover {
  color: #bbb;}

.nav-services {
  cursor: pointer;}

.nav-desktop .chevron,
.mobile-menu .chevron {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;}

.nav-services.active .chevron {
  transform: rotate(180deg);
  margin-top: 2px;}

.nav-desktop svg,
.mobile-menu svg {
  width: 16px;
  height: 16px;
  display: block;
  margin-top: 2px;}

/* Nav Button */
.nav-desktop button,
.mobile-menu button {
  --primary-color: #181818;
  --secondary-color: #eee;
  --hover-color: #111;
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  border: 0;
  font-family: "TrainedAnd", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 100;
  border-radius: 15px;
  color: var(--secondary-color);
  padding: 14px 20px;
  background: var(--primary-color);
  display: flex;
  transition: 0.2s background;
  align-items: center;
  gap: 0.6em;
  right: 40px;
  font-weight: bold;}

.nav-desktop button {
  position: absolute;}

.arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;}

.arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--primary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;}

.arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);}

.nav-desktop button:hover,
.mobile-menu button:hover {
  background-color: var(--hover-color);}

.nav-desktop button:hover .arrow,
.mobile-menu button:hover .arrow {
  background: var(--secondary-color);}

.nav-desktop button:hover .arrow:before,
.mobile-menu button:hover .arrow:before {
  right: 0;}

/** Services Dropdown - Desktop **/
.nav-services-wrapper {
  position: relative;
  display: inline-flex;}

.services-dropdown {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: #181818;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 8px;
  width: 430px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;}

.services-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);}

.dropdown-grid {
  display: flex;
  flex-direction: column;
  gap: 4px;}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  transition: background-color 0.15s ease;
  cursor: pointer;
  text-decoration: none;}

.service-item:hover {
  background-color: #222;}

.service-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: #222;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;}

.service-icon svg {
  width: 20px;
  height: 20px;
  stroke: #eee;}

.service-content {
  margin: 3px auto auto 5px;
  flex: 1;}

.service-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ddd;
  margin: 0 0 2px 0;
  line-height: 1.3;}

.service-item p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #aaa;
  margin: 0;
  line-height: 1.4;}

/** Services Dropdown - Mobile **/
.mobile-services-toggle {
  font-family: "Inter", sans-serif;
  color: #eee;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  line-height: 1;}

.mobile-services-toggle:hover {
  opacity: 0.7;}

.mobile-services-toggle .chevron {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;}

.mobile-services-toggle.active .chevron {
  transform: rotate(180deg);}

.mobile-services-toggle svg {
  width: 20px;
  height: 20px;
  margin-top: 0;}

.mobile-services-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
  margin-top: 0;}

.mobile-services-list.active {
  max-height: 400px;
  opacity: 1;
  margin-top: 18px;}

.mobile-services-list a {
  font-family: "Inter", sans-serif;
  color: #ccc;
  font-size: 18px !important;
  font-weight: 400;
  text-decoration: none;
  transition: opacity 0.2s ease;}

.mobile-services-list a:hover {
  opacity: 0.7;}

/** Hamburger **/
.hamburger {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1200;}

.hamburger span {
  position: absolute;
  left: 50%;
  width: 25px;
  height: 3px;
  margin-top: -1px;
  background: #eee;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s ease;}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 30px; }

/** X **/
.hamburger.active span:nth-child(1) {
  transform: translateX(-50%) rotate(45deg);
  top: 22px;
  background: #eee;}

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

.hamburger.active span:nth-child(3) {
  transform: translateX(-50%) rotate(-45deg);
  top: 22px;
  background: #eee;}

/** Overlay **/
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 1100;}

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

/* Mobile */
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 26px;
  text-align: center;}

.mobile-menu a {
  font-family: "Inter", sans-serif;
  color: #eee;
  font-size: 24px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;}

.mobile-menu a:hover {
  opacity: 0.7;}

/** Responsive **/
@media (max-width: 900px) {
  .header-bar {
    justify-content: space-between;}
  
  .logo {
    position: relative;
    left: auto;
    right: auto;}
  
  .nav-desktop {
    display: none;}

  .hamburger {
    display: block;}
  
  .mobile-menu button {
    font-size: 20px;}}

@media (max-width: 400px) {
  .header-bar {
    padding: 0 13px;}

  .logo img {
    height: 42px;}

  .mobile-menu a {
    font-size: 20px;}}

/*** Index ***/
.index-hero {
  position: relative;
  min-height: calc(100vh - 90px);
  background-image: url('images/backgrounds/photo2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1000px;
  padding: 40px 20px;}

.hero-title {
  font-family: "Public Sans", sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 1.1;
  color: #eee;
  margin: 40px 0 30px 0;
  letter-spacing: -0.02em;}

.hero-explore {
  border: 0;
  font-family: "TrainedAnd", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;}

.hero-explore svg {
  transition: transform 0.3s ease;}

.hero-explore:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 64px;}}

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;}

  .hero-explore {
    font-size: 16px;
    padding: 14px 28px;}}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
    margin-bottom: 30px;}

  .hero-explore {
    font-size: 15px;
    padding: 12px 24px;}}

/*** Common Section Styles ***/
.section-container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;}

.section-title {
  font-family: "Public Sans", sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #FFFFFF;
  text-align: center;
  margin: 0 0 24px 0;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4A6370, #7A96A5);
  margin: 24px auto 0 auto;
  border-radius: 2px;}

/* Hide decorative underline for About page (Hikayemiz başlığı) */
.about-story .section-title::after {
  display: none;
}

/*** Services ***/
.services {
  padding: 80px 20px;
  background: #000;
  position: relative;
  overflow: hidden;}

.services .section-container {
  position: relative;
  z-index: 2;}

.services-carousel-wrapper {
  position: relative;
  overflow: hidden;}

.services-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;}

.service-card {
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #222;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex-shrink: 0;}

.service-card:hover {
  border-color: #333;}

.service-image {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;}

.service-content-wrapper {
  flex: 1;}

.service-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #eee;
  margin: 0 0 12px 0;}

.service-card p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
  margin: 0;}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #222;
  border: 1px solid #333;
  color: #eee;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;}

.carousel-btn:hover {
  background: #2a2a2a;
  border-color: #444;}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;}

.carousel-btn-prev {
  left: 20px;}

.carousel-btn-next {
  right: 20px;}

.carousel-btn svg {
  width: 24px;
  height: 24px;}

/*** Why Chromic ***/
.why-chromic {
  padding: 100px 20px;
  background-image: url('images/backgrounds/background7.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;}

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

.feature-card {
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid #222;
  transition: all 0.3s ease;}

.feature-card:hover {
  border-color: #333;
  transform: translateY(-5px);}

.feature-number {
  font-family: "Public Sans", sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;}

.feature-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #eee;
  margin: 0 0 12px 0;}

.feature-card p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
  margin: 0;}

/*** Stats ***/
.stats {
  padding: 120px 20px;
  background: #000;
  position: relative;
  overflow: hidden;}

.stats .section-container {
  position: relative;
  z-index: 2;}

.stats-bg-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;}

.stats.animated .stats-bg-animation {
  opacity: 1;}

.rotating-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 4px solid;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(0deg);
  opacity: 0;
  z-index: 1;}

.stats.animated .rotating-ring {
  animation: expandRotate 3s ease-out forwards, breathe 6s 3s ease-in-out infinite;}

.ring-1 {
  width: 200px;
  height: 200px;
  border-color: rgba(57, 77, 89, 0.7);}

.stats.animated .ring-1 {
  animation-delay: 0s, 3s;}

.ring-2 {
  width: 350px;
  height: 350px;
  border-color: rgba(105, 127, 140, 0.63);}

.stats.animated .ring-2 {
  animation-delay: 0.18s, 3.18s;}

.ring-3 {
  width: 500px;
  height: 500px;
  border-color: rgba(57, 77, 89, 0.56);}

.stats.animated .ring-3 {
  animation-delay: 0.36s, 3.36s;}

.ring-4 {
  width: 650px;
  height: 650px;
  border-color: rgba(105, 127, 140, 0.49);}

.stats.animated .ring-4 {
  animation-delay: 0.54s, 3.54s;}

.ring-5 {
  width: 800px;
  height: 800px;
  border-color: rgba(57, 77, 89, 0.42);}

.stats.animated .ring-5 {
  animation-delay: 0.72s, 3.72s;}

.ring-6 {
  width: 950px;
  height: 950px;
  border-color: rgba(105, 127, 140, 0.35);}

.stats.animated .ring-6 {
  animation-delay: 0.9s, 3.9s;}

.ring-7 {
  width: 1100px;
  height: 1100px;
  border-color: rgba(57, 77, 89, 0.28);}

.stats.animated .ring-7 {
  animation-delay: 1.08s, 4.08s;}

.ring-8 {
  width: 1250px;
  height: 1250px;
  border-color: rgba(105, 127, 140, 0.21);}

.stats.animated .ring-8 {
  animation-delay: 1.26s, 4.26s;}

.ring-9 {
  width: 1400px;
  height: 1400px;
  border-color: rgba(57, 77, 89, 0.14);}

.stats.animated .ring-9 {
  animation-delay: 1.44s, 4.44s;}

.ring-10 {
  width: 1550px;
  height: 1550px;
  border-color: rgba(105, 127, 140, 0.07);}

.stats.animated .ring-10 {
  animation-delay: 1.62s, 4.62s;}

@keyframes expandRotate {
  0% {
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    opacity: 0;}
  20% {
    opacity: 1;}
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(180deg);
    opacity: 1;}}

@keyframes breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1) rotate(180deg);}
  50% {
    transform: translate(-50%, -50%) scale(1.05) rotate(180deg);}}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 2;}

.stat-card {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border-radius: 20px;
  border: 1px solid #222;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #394D59, #697F8C);
  transform: scaleX(0);
  transition: transform 0.4s ease;}

.stat-card:hover {
  border-color: #394D59;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(57, 77, 89, 0.15);}

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

.stat-icon {
  color: #4A6370;
  margin-bottom: 20px;
  opacity: 1;
  transition: all 0.3s ease;
  filter: brightness(1.2);}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
  filter: brightness(1.4);}

.stat-number {
  font-family: "Public Sans", sans-serif;
  font-size: 60px;
  font-weight: 700;
  background: linear-gradient(135deg, #4A6370, #7A96A5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  line-height: 1;}

.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #bbb;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 13px;}

@media (max-width: 700px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 40px;}

  .why-chromic,
  .services,
  .stats {
    padding: 80px 20px;}

  .features-grid {
    gap: 20px;}

  .stat-card {
    padding: 40px 24px;}

  .stat-icon svg {
    width: 40px;
    height: 40px;}

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

  .stat-label {
    font-size: 12px;}

  .carousel-btn-prev {
    left: 10px;}

  .carousel-btn-next {
    right: 10px;}}

@media (max-width: 480px) {
  .why-chromic,
  .services,
  .stats {
    padding: 60px 15px;}

  .stat-card {
    padding: 36px 20px;}

  .section-title {
    font-size: 32px;
    margin-bottom: 36px;}}

/* Trust Marquee */
.trust-marquee {
  background: transparent;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  margin: 35px 10px;}

.trust-marquee::before,
.trust-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
  pointer-events: none;}

.trust-marquee::before {
  left: 0;
  background: linear-gradient(to right, rgba(10, 15, 20, 0) 0%, rgba(10, 15, 20, 0.0) 40%, transparent 100%);}

.trust-marquee::after {
  right: 0;
  background: linear-gradient(to left, rgba(10, 15, 20, 0) 0%, rgba(10, 15, 20, 0.0) 40%, transparent 100%);}

.marquee-container {
  display: flex;
  width: 100%;
  user-select: none;}

.marquee-content {
  display: flex;
  animation: marquee 50s linear infinite;
  gap: 80px;
  will-change: transform;}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;}

.marquee-dot {
  width: 8px;
  height: 8px;
  background: #FFFFFF;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.6),
              0 0 24px rgba(255, 255, 255, 0.3);
  animation: pulse 2.5s ease-in-out infinite;}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6),
                0 0 24px rgba(255, 255, 255, 0.3);}
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
                0 0 40px rgba(255, 255, 255, 0.5);}}

.dot-last {
  margin-left: 90px;}

.marquee-text {
  font-family: "Public Sans", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: -0.8px;
  white-space: nowrap;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;}

.marquee-text:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);}

@media (max-width: 768px) {
  .trust-marquee {
    padding: 30px 0;
    margin: 25px 0;}

  .marquee-content {
    gap: 50px;}

  .marquee-text {
    font-size: 30px;
    padding: 8px 16px;}

  .marquee-dot {
    width: 7px;
    height: 7px;}

  .trust-marquee::before,
  .trust-marquee::after {
    width: 80px;}}

@media (max-width: 480px) {
  .trust-marquee {
    padding: 18px 0;
    margin: 12px 0;}

  .marquee-content {
    gap: 35px;}

  .marquee-text {
    font-size: 22px;
    padding: 7px 14px;
    letter-spacing: -0.5px;}

  .marquee-dot {
    width: 6px;
    height: 6px;}

  .dot-last {
    margin-left: 45px;}

  .trust-marquee::before,
  .trust-marquee::after {
    width: 35px;}}

/* Testimonials */
.testimonials {
  background: #000;
  padding: 120px 0;
  overflow: hidden;}

.testimonials .section-title {
  padding: 0 20px;}

.testimonials-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 20px 30px 20px;
  scrollbar-width: thin;
  scrollbar-color: rgba(74, 99, 112, 0.5) rgba(74, 99, 112, 0.1);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;}

.testimonials-scroll::-webkit-scrollbar {
  height: 8px;}

.testimonials-scroll::-webkit-scrollbar-track {
  background: rgba(74, 99, 112, 0.1);
  border-radius: 10px;}

.testimonials-scroll::-webkit-scrollbar-thumb {
  background: rgba(74, 99, 112, 0.5);
  border-radius: 10px;
  transition: background 0.3s ease;}

.testimonials-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(74, 99, 112, 0.7);}

.testimonial-card {
  min-width: 400px;
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  scroll-snap-align: start;}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);}

.testimonial-stars {
  display: flex;
  gap: 4px;}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #FFD700;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.3));}

.testimonial-text {
  font-family: "Public Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  flex: 1;}

.testimonial-name {
  font-family: "Public Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;}

@media (max-width: 1400px) {
  .testimonials-scroll {
    padding: 20px;}}

@media (max-width: 768px) {
  .testimonials {
    padding: 80px 40px 60px 40px;}

  .testimonials .section-container {
    padding: 0;}

  .testimonials .section-title {
    font-size: 36px;
    margin-bottom: 40px;
    padding: 0 20px;}

  .testimonials-scroll {
    padding: 40px;}

  .testimonial-card {
    min-width: 340px;
    padding: 28px;}

  .testimonial-text {
    font-size: 14px;}

  .testimonial-name {
    font-size: 16px;}

  .testimonial-stars svg {
    width: 16px;
    height: 16px;}}

@media (max-width: 480px) {
  .testimonials {
    padding: 60px 40px;}

  .testimonials .section-container {
    padding: 0;}

  .testimonials .section-title {
    font-size: 32px;
    margin-bottom: 36px;
    padding: 0 15px;}

  .testimonials-scroll {
    padding: 0 15px 30px 15px;
    gap: 15px;}

  .testimonial-card {
    min-width: calc(100vw - 80px);
    padding: 28px;
    gap: 16px;}

  .testimonial-text {
    font-size: 14px;
    line-height: 1.65;}

  .testimonial-name {
    font-size: 15px;}

  .testimonial-stars {
    gap: 3px;}

  .testimonial-stars svg {
    width: 15px;
    height: 15px;}}

/*** FAQ ***/
.faq {
  background: #000;
  padding: 10px 40px;
  overflow: hidden;
  position: relative;}

.faq .section-container {
  max-width: 1320px;
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px 60px;
  backdrop-filter: blur(10px);}

.faq-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px auto;}

.faq .section-title {
  margin: 0 0 20px 0;}

.faq-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;}

.faq-subtitle a {
  color: #7A96A5;
  text-decoration: none;
  transition: color 0.3s ease;}

.faq-subtitle a:hover {
  color: #4A6370;}

.faq-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 16px;}

.faq-question {
  font-family: "Public Sans", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.4;}

.faq-answer {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 50px;}}

@media (max-width: 768px) {
  .faq {
    padding: 10px 30px;}

  .faq .section-container {
    padding: 50px 36px;}

  .faq-header {
    margin-bottom: 50px;}

  .faq-subtitle {
    font-size: 15px;}

  .faq-grid {
    gap: 45px;}

  .faq-question {
    font-size: 17px;}

  .faq-answer {
    font-size: 14px;}}

@media (max-width: 480px) {
  .faq {
    padding: 10px 30px;}

  .faq .section-container {
    padding: 40px 28px;
    border-radius: 18px;}

  .faq-header {
    margin-bottom: 40px;}

  .faq-subtitle {
    font-size: 14px;
    line-height: 1.7;}

  .faq-grid {
    gap: 36px;}

  .faq-item {
    gap: 12px;}

  .faq-question {
    font-size: 16px;
    line-height: 1.4;}

  .faq-answer {
    font-size: 14px;
    line-height: 1.7;}}

/*** BLOG ***/
.blog {
  background: #000;
  padding: 100px 20px;
  overflow: hidden;
  position: relative;}

.blog .section-container {
  max-width: 1360px;}

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

.blog .section-title {
  margin: 0 0 20px 0;}

.blog-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;}

.blog-card {
  background: rgba(20, 30, 40, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);}

.blog-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);}

.blog-card:hover .blog-image img {
  transform: scale(1.08);}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(139, 92, 246, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;}

.blog-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;}

.blog-date {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  letter-spacing: 0.02em;}

.blog-title {
  font-family: "Public Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.01em;}

.blog-excerpt {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  flex: 1;}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #8B5CF6;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;}

.blog-link svg {
  transition: transform 0.3s ease;}

.blog-link:hover {
  color: #A78BFA;
  gap: 10px;}

.blog-link:hover svg {
  transform: translateX(4px);}

/*** CTA ***/
.cta {
  background: #000;
  padding: 0 40px 40px 40px;}

.cta .section-container {
  max-width: 1320px;
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 60px 20px;
  backdrop-filter: blur(10px);}

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

.cta .section-title {
  margin: 0 0 20px 0;
  line-height: 1.2;}

.cta-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 48px 0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;}

.cta-buttons {
  display: flex;
  justify-content: center;}

.cta-button {
  background-color: #4A6370;
  color: #eee;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  padding: 18px 40px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  letter-spacing: -0.01em;}

.cta-button:hover {
  transform: translateY(-3px);}

/* Blog Responsive */
@media (max-width: 1400px) {
  .blog-grid {
    gap: 28px;}}

@media (max-width: 1024px) {
  .blog {
    padding: 100px 20px;}

  .blog-subtitle {
    font-size: 16px;}

  .blog-header {
    margin-bottom: 60px;}

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;}

  .blog-image {
    height: 220px;}}

@media (max-width: 768px) {
  .blog {
    padding: 80px 20px;}

  .blog-subtitle {
    font-size: 15px;}

  .blog-header {
    margin-bottom: 50px;}

  .blog-grid {
    gap: 20px;}}

@media (max-width: 700px) {
  .blog {
    padding: 70px 20px;}

  .blog-grid {
    grid-template-columns: 1fr;}}

@media (max-width: 480px) {
  .blog {
    padding: 60px 15px;}

  .blog-subtitle {
    font-size: 14px;
    line-height: 1.7;}

  .blog-header {
    margin-bottom: 40px;}

  .blog-grid {
    gap: 20px;}

  .blog-card {
    border-radius: 16px;}

  .blog-image {
    height: 200px;}

  .blog-category {
    font-size: 12px;
    padding: 5px 12px;}

  .blog-content {
    padding: 24px;
    gap: 12px;}

  .blog-date {
    font-size: 12px;}

  .blog-title {
    font-size: 18px;
    line-height: 1.4;}

  .blog-excerpt {
    font-size: 14px;
    line-height: 1.7;}

  .blog-link {
    font-size: 14px;}}

/* CTA Responsive */
@media (max-width: 1024px) {
  .cta {
    padding: 10px 30px;}

  .cta .section-container {
    padding: 70px 50px;}

  .cta-text {
    font-size: 17px;}}

@media (max-width: 768px) {
  .cta {
    padding: 10px 30px;}

  .cta .section-container {
    padding: 60px 40px;}

  .cta-text {
    font-size: 16px;
    margin-bottom: 40px;}

  .cta-button {
    font-size: 16px;
    padding: 16px 36px;}}

@media (max-width: 700px) {
  .cta {
    padding: 10px 20px;}

  .cta .section-container {
    padding: 50px 32px;}}

@media (max-width: 480px) {
  .cta {
    padding: 10px 35px;}

  .cta .section-container {
    padding: 40px 28px;
    border-radius: 18px;}

  .cta-text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 36px;}

  .cta-button {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 16px 32px;
    font-size: 16px;}}

/*** Footer ***/
.footer {
  background: linear-gradient(135deg, #181818 0%, #0e1016 100%);
  padding: 60px 24px 24px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -8px 32px rgba(20,30,40,0.12);}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 8px;}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  margin-bottom: 40px;
  align-items: flex-start;}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;}

.footer-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(139,92,246,0.08));
  margin-bottom: 8px;}

.footer-description {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  max-width: 400px;}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;}

.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(68, 51, 107, 0.08);
  border: none;
  border-radius: 50%;
  color: #4A6370;
  box-shadow: 0 2px 12px rgba(139,92,246,0.10);
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  font-size: 20px;}

.social-link:hover {
  background: #3c535f;
  color: #fff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 6px 24px rgba(139,92,246,0.18);}

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

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 18px;}

.footer-title {
  font-family: "Public Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0 0 2px 0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  letter-spacing: 0.04em;}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;}

.footer-list li {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4,0,0.2,1);
  font-weight: 500;}

.footer-list a:hover {
  color: #4A6370;}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;}

.footer-contact svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.4);}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;}

.footer-copyright {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;}

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

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

.footer-legal .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer {
    padding: 40px 10px 20px 10px;}
  
  .footer-content {
    gap: 32px;
    margin-bottom: 28px;
  }
  .footer-links {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 4vw 16px 4vw;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 24px;
  }
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .footer-column:last-child {
    grid-column: 1 / -1;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 24px 2vw 10px 2vw;
  }
  .footer-content {
    gap: 18px;
    margin-bottom: 16px;
  }
  .footer-logo {
    height: 32px;
  }
  .footer-description {
    font-size: 13px;
  }
  .footer-social {
    gap: 8px;
  }
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  .footer-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .footer-column:last-child {
    grid-column: auto;
  }
  .footer-title {
    font-size: 13px;
  }
  .footer-list {
    gap: 8px;
  }
  .footer-list li {
    font-size: 12px;
  }
  .footer-bottom {
    padding-top: 12px;
    gap: 8px;
  }
  .footer-copyright,
  .footer-legal a {
    font-size: 12px;
  }
}

/*** ABOUT PAGE ***/
.about-hero {
  position: relative;
  min-height: 60vh;
  background-image: url('images/backgrounds/photo2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 80px 20px;}

.about-hero .hero-content {
  text-align: center;
  max-width: 900px;}

.about-hero .hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;}

.about-story {
  padding: 100px 20px;
  background: #000;}

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

.story-content {
  display: flex;
  flex-direction: column;
  gap: 20px;}

.story-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;}

.story-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;}

.about-values {
  padding: 100px 20px;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);}

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

.value-card {
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  text-align: center;}

.value-card:hover {
  border-color: #4A6370;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 99, 112, 0.15);}

.value-icon {
  color: #4A6370;
  margin-bottom: 20px;}

.value-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #eee;
  margin: 0 0 12px 0;}

.value-card p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #aaa;
  margin: 0;}

.about-process {
  padding: 100px 20px;
  background: linear-gradient(180deg, #000 0%, #0a0a0a 100%);}

.about-process .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 60px auto 0 auto;
  width: 100%;}

.process-step {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 40px;}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 70px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(180deg, #4A6370 0%, rgba(74, 99, 112, 0.2) 100%);}

.step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #394D59, #4A6370);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Public Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  border: 3px solid rgba(74, 99, 112, 0.2);}

.step-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #eee;
  margin: 5px 0 10px 0;}

.step-content p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #aaa;
  margin: 0;}

/*** CONTACT PAGE ***/
.contact-hero {
  position: relative;
  min-height: 50vh;
  background-image: url('images/backgrounds/photo2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 80px 20px;}

.contact-hero .hero-content {
  text-align: center;
  max-width: 800px;}

.contact-hero .hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 20px;}

.contact-main {
  padding: 100px 20px;
  background: #000;}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;}

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

.contact-info-title {
  font-family: "Public Sans", sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  margin: 0;}

.contact-info-text {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;}

.contact-method {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;}

.contact-method:hover {
  border-color: #4A6370;
  transform: translateX(5px);}

.method-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: rgba(74, 99, 112, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A6370;}

.method-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #eee;
  margin: 0 0 8px 0;}

.method-content a {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #4A6370;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 5px;}

.method-content a:hover {
  color: #7A96A5;}

.method-content p {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #888;
  margin: 5px 0 0 0;}

.contact-social {
  margin-top: 20px;}

.contact-social h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #eee;
  margin: 0 0 20px 0;}

.contact-social .social-links {
  display: flex;
  gap: 12px;}

.contact-social .social-link {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A6370;
  transition: all 0.3s ease;}

.contact-social .social-link:hover {
  border-color: #4A6370;
  background: rgba(74, 99, 112, 0.1);
  transform: translateY(-3px);}

.contact-form-wrapper {
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);}

.form-header {
  margin-bottom: 30px;}

.form-header h2 {
  font-family: "Public Sans", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 10px 0;}

.form-header p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;}

.form-group label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  transition: all 0.3s ease;
  outline: none;}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #4A6370;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(74, 99, 112, 0.1);}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 10px;}

.form-checkbox input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;}

.form-checkbox label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;}

.form-checkbox label a {
  color: #4A6370;
  text-decoration: none;
  transition: color 0.3s ease;}

.form-checkbox label a:hover {
  color: #7A96A5;}

.form-submit {
  background: #4A6370;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 10px;}

.form-submit:hover {
  background: #3c535f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 99, 112, 0.3);}

.contact-faq {
  padding: 80px 20px;
  background: #000;}

.contact-faq .faq-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 60px;}

/* Responsive - About & Contact */
@media (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 50px;}

  .story-image {
    height: 400px;}

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;}}

@media (max-width: 768px) {
  .about-hero,
  .contact-hero {
    min-height: 50vh;
    padding: 80px 20px 60px 20px;}

  .hero-title {
    font-size: 48px;}

  .about-story,
  .about-values,
  .about-process,
  .contact-main,
  .contact-faq {
    padding: 60px 20px;}

  .story-image {
    height: 300px;}

  .values-grid {
    gap: 20px;}

  .process-step {
    gap: 20px;}

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 18px;}

  .contact-form-wrapper {
    padding: 30px;}

  .form-row {
    grid-template-columns: 1fr;}

  .contact-faq .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;}}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;}

  .about-hero .hero-subtitle,
  .contact-hero .hero-subtitle {
    font-size: 16px;}

  .about-story,
  .about-values,
  .about-process,
  .contact-main,
  .contact-faq {
    padding: 50px 15px;}

  .story-image {
    height: 250px;}

  .contact-form-wrapper {
    padding: 24px;}

  .form-header h2 {
    font-size: 24px;}

  .process-step {
    padding-bottom: 30px;}

  .process-step:not(:last-child)::after {
    bottom: -30px;}}

/*** SERVICE PAGES ***/
.service-hero {
  position: relative;
  min-height: 80vh;
  background-image: url('images/backgrounds/photo2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 120px 20px;}

.service-hero .hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;}

.service-hero .hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.2;}

.service-hero .hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(74, 99, 112, 0.3), rgba(121, 150, 165, 0.2));
  border: 1px solid rgba(121, 150, 165, 0.5);
  border-radius: 50px;
  color: #7A96A5;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: 0 4px 15px rgba(74, 99, 112, 0.2);
  backdrop-filter: blur(10px);}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #4A6370, #394D59);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 17px;
  font-weight: 600;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 36px;
  box-shadow: 0 8px 24px rgba(74, 99, 112, 0.3);}

.hero-cta:hover {
  background: linear-gradient(135deg, #394D59, #2e3f49);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(74, 99, 112, 0.5);}

.service-intro {
  padding: 120px 20px;
  background: linear-gradient(180deg, #000 0%, #050505 100%);}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;}

.intro-title {
  font-family: "Public Sans", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 28px 0;
  line-height: 1.3;}

.intro-text {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 20px 0;}

.intro-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;}

.stat-box {
  padding: 36px 32px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 2px solid transparent;
  background-clip: padding-box;
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;}

.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(74, 99, 112, 0.3), rgba(121, 150, 165, 0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;}

.stat-box:hover::before {
  opacity: 1;}

.stat-box:hover {
  transform: translateX(8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(74, 99, 112, 0.25);}

.stat-box .stat-number {
  font-family: "Public Sans", sans-serif;
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(135deg, #4A6370, #7A96A5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  letter-spacing: -1px;}

.stat-box .stat-label {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;}

.service-features {
  padding: 120px 20px;
  background: linear-gradient(180deg, #050505 0%, #000 50%, #050505 100%);}

.web-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 60px;}

.feature-box {
  padding: 48px 36px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(74, 99, 112, 0.15);
  border-radius: 20px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #4A6370, #7A96A5);
  transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);}

.feature-box:hover::before {
  height: 100%;}

.feature-box:hover {
  border-color: rgba(74, 99, 112, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(74, 99, 112, 0.2);}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(74, 99, 112, 0.2), rgba(121, 150, 165, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A6370;
  margin-bottom: 24px;
  transition: all 0.5s ease;}

.feature-box:hover .feature-icon {
  background: linear-gradient(135deg, rgba(74, 99, 112, 0.3), rgba(121, 150, 165, 0.15));
  transform: scale(1.1) rotate(5deg);}

.feature-box h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;}

.feature-box p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;}

.service-process {
  padding: 120px 20px;
  background: linear-gradient(180deg, #000 0%, #050505 100%);}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1200px;
  margin: 60px auto 0 auto;}

.step-item {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  padding: 40px 28px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 2px solid rgba(74, 99, 112, 0.2);
  border-radius: 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;}

.step-item:hover {
  border-color: rgba(74, 99, 112, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(74, 99, 112, 0.25);}

.step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A6370, #394D59);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Public Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(74, 99, 112, 0.3);
  transition: all 0.5s ease;}

.step-item:hover .step-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 12px 32px rgba(74, 99, 112, 0.5);}

.step-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px 0;
  letter-spacing: -0.3px;}

.step-item p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;}

.step-arrow {
  flex-shrink: 0;}

.service-tech {
  padding: 120px 20px;
  background: linear-gradient(180deg, #050505 0%, #000 50%, #050505 100%);}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 50px auto 0 auto;}

.tech-item {
  padding: 40px 30px;
  background: linear-gradient(135deg, #181818 0%, #111 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;}

.tech-item:hover {
  border-color: #4A6370;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(74, 99, 112, 0.2);}

.tech-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);}

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

.tech-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: filter 0.3s ease;}

.tech-item:hover .tech-icon img {
  filter: drop-shadow(0 6px 12px rgba(74, 99, 112, 0.4));}

.tech-item h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;}

.tech-item p {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #888;
  margin: 0;}

.service-packages {
  padding: 120px 20px;
  background: linear-gradient(180deg, #050505 0%, #000 100%);}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1260px;
  margin: 50px auto 0 auto;}

.package-card {
  padding: 48px 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 2px solid rgba(74, 99, 112, 0.15);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4A6370, #7A96A5);
  opacity: 0;
  transition: opacity 0.5s ease;}

.package-card:hover::before {
  opacity: 1;}

.package-card.featured {
  border-color: rgba(74, 99, 112, 0.5);
  background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(74, 99, 112, 0.3);}

.package-card.featured::before {
  opacity: 1;}

.package-card:hover {
  transform: translateY(-8px);
  border-color: rgba(74, 99, 112, 0.4);
  box-shadow: 0 20px 60px rgba(74, 99, 112, 0.25);}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 24px 72px rgba(74, 99, 112, 0.4);}

.package-header {
  text-align: center;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(74, 99, 112, 0.15);
  margin-bottom: 36px;}

.package-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;}

.package-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;}

.package-price .currency {
  font-family: "Public Sans", sans-serif;
  font-size: 24px;
  background: linear-gradient(135deg, #4A6370, #7A96A5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;}

.package-price .amount {
  font-family: "Public Sans", sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -2px;}

.package-price {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px 0;
  flex: 1;}

.package-features li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  padding: 16px 0 16px 36px;
  border-bottom: 1px solid rgba(74, 99, 112, 0.1);
  position: relative;
  transition: all 0.3s ease;}

.package-features li:hover {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 40px;}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74, 99, 112, 0.3), rgba(121, 150, 165, 0.2));
  border-radius: 6px;
  color: #7A96A5;
  font-weight: 700;
  font-size: 14px;}

.package-features li:last-child {
  border-bottom: none;}

.package-button {
  display: block;
  padding: 18px 32px;
  background: linear-gradient(135deg, rgba(74, 99, 112, 0.15), rgba(121, 150, 165, 0.1));
  color: #7A96A5;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(74, 99, 112, 0.3);
  letter-spacing: 0.3px;}

.package-button:hover {
  background: linear-gradient(135deg, #4A6370, #394D59);
  color: #fff;
  border-color: #4A6370;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 99, 112, 0.4);}

.packages-note {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin: 50px 0 0 0;
  font-style: italic;
  letter-spacing: 0.2px;}

.service-faq {
  padding: 120px 20px;
  background: linear-gradient(180deg, #000 0%, #050505 100%);}

.service-faq .faq-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  margin-top: 50px;}

.service-faq .faq-item {
  padding: 36px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid rgba(74, 99, 112, 0.15);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);}

.service-faq .faq-item:hover {
  border-color: rgba(74, 99, 112, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(74, 99, 112, 0.2);}

.service-faq .faq-question {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.3px;}

.service-faq .faq-answer {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);}

/*** COMING SOON PAGE ***/
.coming-soon {
  min-height: calc(100vh - 90px);
  background-image: url('images/backgrounds/photo2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;}

.coming-soon-content {
  text-align: center;
  max-width: 600px;}

.coming-soon-icon {
  color: #4A6370;
  margin-bottom: 30px;
  animation: pulse-icon 2s ease-in-out infinite;}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    opacity: 1;}
  50% {
    transform: scale(1.05);
    opacity: 0.8;}}

.coming-soon-title {
  font-family: "Public Sans", sans-serif;
  font-size: 56px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 20px 0;}

.coming-soon-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 40px 0;}

.coming-soon-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;}

.coming-soon-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;}

.coming-soon-button.primary {
  background: #4A6370;
  color: #fff;}

.coming-soon-button.primary:hover {
  background: #3c535f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(74, 99, 112, 0.3);}

.coming-soon-button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);}

.coming-soon-button.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);}

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

  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 700px;}

  .step-arrow {
    display: none;}

  .step-item {
    min-width: auto;
    max-width: none;}}

@media (max-width: 768px) {
  .service-hero {
    min-height: 60vh;
    padding: 100px 20px 80px 20px;}

  .service-hero .hero-title {
    font-size: 48px;}

  .service-hero .hero-subtitle {
    font-size: 17px;}

  .section-title {
    font-size: 42px;
    margin-bottom: 20px;}

  .section-title::after {
    width: 60px;
    height: 3px;
    margin-top: 20px;}

  .intro-title {
    font-size: 32px;}

  .intro-grid {
    gap: 50px;}

  .service-intro,
  .service-features,
  .service-process,
  .service-tech,
  .service-packages,
  .service-faq {
    padding: 80px 20px;}

  .web-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;}

  .feature-box {
    padding: 36px 28px;}

  .process-steps {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;}

  .step-item {
    max-width: none;
    padding: 32px 24px;}

  .step-icon {
    width: 64px;
    height: 64px;
    font-size: 20px;}

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;}

  .tech-item {
    padding: 30px 20px;}

  .tech-icon {
    width: 60px;
    height: 60px;}

  .tech-item h3 {
    font-size: 16px;}

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 32px;}

  .package-card {
    padding: 40px 32px;}

  .package-card.featured {
    transform: scale(1);}

  .package-price .amount {
    font-size: 48px;}

  .service-faq .faq-grid {
    grid-template-columns: 1fr;
    gap: 24px;}

  .service-faq .faq-item {
    padding: 28px;}

  .coming-soon-title {
    font-size: 42px;}}

@media (max-width: 480px) {
  .service-hero {
    min-height: 50vh;
    padding: 80px 15px 60px 15px;}

  .service-hero .hero-title {
    font-size: 36px;
    margin-bottom: 20px;}

  .service-hero .hero-subtitle {
    font-size: 15px;
    line-height: 1.6;}

  .hero-badge {
    font-size: 11px;
    padding: 8px 18px;}

  .hero-cta {
    padding: 16px 32px;
    font-size: 15px;}

  .section-title {
    font-size: 34px;
    margin-bottom: 18px;}

  .section-title::after {
    width: 50px;
    height: 3px;
    margin-top: 18px;}

  .intro-title {
    font-size: 28px;}

  .intro-text {
    font-size: 15px;}

  .stat-box {
    padding: 28px 24px;}

  .stat-box .stat-number {
    font-size: 44px;}

  .service-intro,
  .service-features,
  .service-process,
  .service-tech,
  .service-packages,
  .service-faq {
    padding: 60px 15px;}

  .web-features-grid,
  .packages-grid {
    gap: 20px;}

  .feature-box {
    padding: 32px 24px;}

  .feature-icon {
    width: 56px;
    height: 56px;}

  .feature-box h3 {
    font-size: 20px;}

  .step-item {
    padding: 28px 20px;}

  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 18px;}

  .step-item h3 {
    font-size: 18px;}

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;}

  .tech-item {
    padding: 25px 15px;
    gap: 12px;}

  .tech-icon {
    width: 50px;
    height: 50px;}

  .tech-item h3 {
    font-size: 15px;}

  .tech-item p {
    font-size: 12px;}

  .package-card {
    padding: 32px 24px;}

  .package-header h3 {
    font-size: 24px;}

  .package-price .amount {
    font-size: 42px;}

  .package-features li {
    font-size: 14px;
    padding: 14px 0 14px 32px;}

  .package-button {
    padding: 16px 28px;
    font-size: 15px;}

  .service-faq .faq-item {
    padding: 24px;}

  .service-faq .faq-question {
    font-size: 17px;}

  .coming-soon-title {
    font-size: 36px;}

  .coming-soon-text {
    font-size: 16px;}

  .coming-soon-buttons {
    flex-direction: column;}

  .coming-soon-button {
    width: 100%;
    justify-content: center;}}

