/* 
  HA Services Custom Styling - Hostinger Upload Ready
  Color Palette:
    - Background: #0A0A0A
    - Cards: #111111
    - Border: #1F1F1F
    - Primary Orange: #F97316
    - Red Orange: #EF4444
    - White: #FFFFFF
    - Gray: #9CA3AF
    - Glow Accent: rgba(249, 115, 22, 0.15)
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg-color: #0A0A0A;
  --card-bg: #111111;
  --border-color: #1F1F1F;
  --orange: #F97316;
  --red-orange: #EF4444;
  --white: #FFFFFF;
  --gray: #9CA3AF;
  --glow: rgba(249, 115, 22, 0.15);
  --gradient-orange: linear-gradient(135deg, #F97316 0%, #EF4444 100%);
  --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Poppins', sans-serif;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background-color: var(--bg-color);
  color: var(--white);
  font-family: var(--font-family);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  color: var(--gray);
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.label-accent {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(to right, var(--white), #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtext {
  font-size: 16px;
  color: var(--gray);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-fast);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  border-color: var(--orange);
  background-color: var(--card-bg);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.03);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background-color: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  height: 70px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 8px 0;
  opacity: 0.85;
}

.nav-link:hover {
  color: var(--orange);
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--orange);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta .btn {
  padding: 10px 22px;
  font-size: 14px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  z-index: 1100;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background-color: #0D0D0D;
  border-left: 1px solid var(--border-color);
  z-index: 1050;
  padding: 100px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

.mobile-nav-link:hover {
  color: var(--orange);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding-top: 140px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(249, 115, 22, 0.05);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.badge-pulse:hover {
  background-color: rgba(249, 115, 22, 0.1);
  border-color: var(--orange);
  box-shadow: 0 0 15px var(--glow);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22C55E;
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #22C55E;
  border-radius: 50%;
  animation: pulse 1.8s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.hero-title {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.accent-text-line {
  font-size: 32px;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.accent-text-line::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gradient-orange);
  border-radius: 2px;
}

.hero-paragraph {
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: 40px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  width: 100%;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero Presentation Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: var(--transition-smooth);
}

.visual-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 20px 50px rgba(249, 115, 22, 0.1);
}

.visual-image {
  border-radius: 16px;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background-color: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
}

.floating-badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
}

.badge-wp {
  top: 15%;
  left: -20px;
  border-left: 3px solid #21759b;
  animation: float 6s ease-in-out infinite;
}

.badge-elem {
  bottom: 20%;
  right: -25px;
  border-left: 3px solid #95BF47;
  animation: float 6s ease-in-out infinite 2s;
}

.badge-sm {
  bottom: 5%;
  left: -10px;
  border-left: 3px solid var(--orange);
  animation: float 6s ease-in-out infinite 4s;
}

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

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
  transition: var(--transition-fast);
  cursor: pointer;
}

.scroll-indicator:hover {
  opacity: 1;
  color: var(--orange);
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: var(--white);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { top: -30%; }
  100% { top: 100%; }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--orange);
  border-radius: 16px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 0%, var(--glow), transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.3);
  box-shadow: 0 15px 30px var(--glow);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
  transition: var(--transition-fast);
}

.service-card:hover .service-icon-wrapper {
  background-color: #000000;
  transform: scale(1.05);
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.service-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

/* Specific colors for service icons/glows */
.sc-wp { border-top-color: #21759b; }
.sc-wp .service-icon-wrapper { color: #21759b; }
.sc-wp:hover { box-shadow: 0 15px 30px rgba(33, 117, 155, 0.15); border-color: rgba(33, 117, 155, 0.3); }

.sc-elem { border-top-color: #8B5CF6; }
.sc-elem .service-icon-wrapper { color: #8B5CF6; }
.sc-elem:hover { box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15); border-color: rgba(139, 92, 246, 0.3); }

.sc-html { border-top-color: #E34F26; }
.sc-html .service-icon-wrapper { color: #E34F26; }
.sc-html:hover { box-shadow: 0 15px 30px rgba(227, 79, 38, 0.15); border-color: rgba(227, 79, 38, 0.3); }

.sc-mkt { border-top-color: var(--orange); }
.sc-mkt .service-icon-wrapper { color: var(--orange); }
.sc-mkt:hover { box-shadow: 0 15px 30px var(--glow); border-color: rgba(249, 115, 22, 0.3); }

.sc-shp { border-top-color: #95BF47; }
.sc-shp .service-icon-wrapper { color: #95BF47; }
.sc-shp:hover { box-shadow: 0 15px 30px rgba(149, 191, 71, 0.15); border-color: rgba(149, 191, 71, 0.3); }

.sc-ai { border-top-color: #06B6D4; }
.sc-ai .service-icon-wrapper { color: #06B6D4; }
.sc-ai:hover { box-shadow: 0 15px 30px rgba(6, 182, 212, 0.15); border-color: rgba(6, 182, 212, 0.3); }

/* About Us Section */
.about {
  background-color: #0D0D0D;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-illustration {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  width: 100%;
  max-width: 480px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.about-circle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: var(--gradient-orange);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  z-index: 0;
  pointer-events: none;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.about-stat-box {
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: var(--transition-fast);
}

.about-stat-box:hover {
  border-color: var(--orange);
  background-color: rgba(249, 115, 22, 0.02);
}

.about-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.about-stat-lbl {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.about-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.about-p {
  font-size: 16px;
  color: var(--gray);
}

.about-horizontal-stats {
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: var(--white);
  font-weight: 600;
}

.about-horizontal-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-horizontal-stats span::before {
  content: '✦';
  color: var(--orange);
}

/* Skills & Expertise Section */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.skill-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--transition-smooth);
}

.skill-card:hover {
  border-color: var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.skill-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.skill-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.skill-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--orange);
}

.skill-title {
  font-size: 18px;
  font-weight: 700;
}

.skill-percentage {
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  font-variant-numeric: tabular-nums;
}

.skill-desc {
  font-size: 14px;
}

/* Progress Bar Container */
.skill-bar-bg {
  width: 100%;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.skill-bar-fill {
  width: 0%; /* Animated via JS */
  height: 100%;
  background: var(--gradient-orange);
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 1.5s cubic-bezier(0.1, 0.8, 0.3, 1);
}

/* =============================================
   TEAM SECTION
   ============================================= */
.team-section {
  background-color: #0D0D0D;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.team-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.06), transparent 65%);
  opacity: 0;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

/* Avatar */
.team-avatar-wrap {
  position: relative;
  display: inline-block;
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: var(--transition-smooth);
}

.team-card:hover .team-avatar {
  transform: scale(1.08);
}

/* Avatar gradient per role */
.av-founder { background: linear-gradient(135deg, #F97316, #EF4444); }
.av-shopify  { background: linear-gradient(135deg, #95BF47, #5E8E3E); }
.av-design   { background: linear-gradient(135deg, #8B5CF6, #6D28D9); }
.av-social   { background: linear-gradient(135deg, #F97316, #FBBF24); }

/* Online status dot */
.team-status-dot {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background-color: #22C55E;
  border-radius: 50%;
  border: 2px solid var(--card-bg);
  z-index: 2;
}

.team-status-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite ease-in-out;
}

/* Team Info */
.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.team-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.team-role-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--orange);
}

.team-bio {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 280px;
}

/* Social Icons */
.team-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.team-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--gray);
  transition: var(--transition-fast);
}

.team-socials a:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}



/* Our Process Section */
.process {
  background-color: #0D0D0D;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.timeline-container {
  position: relative;
  margin-top: 60px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.timeline-line-filled {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%; /* Animated via ScrollTrigger */
  height: 100%;
  background: var(--gradient-orange);
  box-shadow: 0 0 10px var(--orange);
  transition: width 0.5s ease;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.step-node {
  width: 82px;
  height: 82px;
  background-color: var(--card-bg);
  border: 2px solid var(--border-color);
  color: var(--gray);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-node {
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 20px var(--glow);
  transform: scale(1.05);
}

.step-node.active-node {
  color: var(--white);
  border-color: var(--orange);
  background: var(--gradient-orange);
  box-shadow: 0 0 25px rgba(249, 115, 22, 0.3);
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--gray);
}

/* Portfolio Section */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 115, 22, 0.25);
  box-shadow: 0 15px 30px var(--glow);
}

.portfolio-preview {
  position: relative;
  aspect-ratio: 16/10;
  background-color: #171717;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.portfolio-logo-decor {
  text-align: center;
  z-index: 2;
  transition: var(--transition-smooth);
}

.portfolio-logo-text {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}

.portfolio-logo-subtext {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
}

.portfolio-card:hover .portfolio-logo-decor {
  transform: scale(1.08);
}

/* Custom background blurs for project thumbnails */
.pp-eagle { background: radial-gradient(circle, rgba(149, 191, 71, 0.1) 0%, rgba(10, 10, 10, 0) 70%); }
.pp-mirza { background: radial-gradient(circle, rgba(146, 0, 59, 0.1) 0%, rgba(10, 10, 10, 0) 70%); }
.pp-tech { background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(10, 10, 10, 0) 70%); }
.pp-saffron { background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, rgba(10, 10, 10, 0) 70%); }
.pp-baku { background: radial-gradient(circle, rgba(33, 117, 155, 0.1) 0%, rgba(10, 10, 10, 0) 70%); }
.pp-rk { background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, rgba(10, 10, 10, 0) 70%); }

.portfolio-link-overlay {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  z-index: 5;
  transition: var(--transition-fast);
}

.portfolio-card:hover .portfolio-link-overlay {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.portfolio-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.portfolio-category-pill {
  align-self: flex-start;
  padding: 4px 10px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
}

.portfolio-name {
  font-size: 20px;
  font-weight: 700;
}

.portfolio-desc {
  font-size: 14px;
  line-height: 1.5;
}

/* CTA Banner Section */
.cta-banner {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-container {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cta-glow-decor {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: var(--gradient-orange);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.cta-title {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(to right, var(--white), #f1f5f9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-desc {
  font-size: 17px;
  margin-bottom: 36px;
  color: var(--gray);
}

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

/* Contact Section */
.contact {
  background-color: #0D0D0D;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-fast);
}

.contact-card:hover {
  border-color: var(--orange);
  box-shadow: 0 5px 15px var(--glow);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
}

.contact-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

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

.social-icon {
  width: 44px;
  height: 44px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 16px;
  transition: var(--transition-fast);
}

.social-icon:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

/* Contact Form Grid */
.contact-form {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

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

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}

.form-control {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1.5px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  color: var(--white);
  font-family: var(--font-family);
  font-size: 14px;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 12px var(--glow);
  background-color: rgba(0, 0, 0, 0.4);
}

textarea.form-control {
  resize: none;
  height: 140px;
}

.form-status {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.form-status.success {
  color: #22C55E;
}

.form-status.error {
  color: var(--red-orange);
}

/* Footer Section */
.footer {
  padding: 80px 0 40px;
  background-color: var(--bg-color);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 24px;
}

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

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  background: var(--gradient-orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand-p {
  font-size: 14px;
  max-width: 300px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-link {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

.footer-link:hover {
  color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray);
  flex-wrap: wrap;
  gap: 12px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 30px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25D366;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-green 2s infinite ease-in-out;
}

@keyframes pulse-green {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background-color: #111111;
  border: 1px solid var(--border-color);
  color: var(--white);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
  white-space: nowrap;
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
}

/* GSAP/Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .hero-paragraph {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .stats-row {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-content {
    align-items: center;
    text-align: center;
  }
  .about-horizontal-stats {
    justify-content: center;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  html {
    scroll-padding-top: 72px;
  }

  .container {
    padding: 0 18px;
  }

  .section {
    padding: 70px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-subtext {
    font-size: 15px;
  }

  .navbar {
    height: 70px;
  }

  .mobile-menu {
    width: min(86vw, 320px);
    padding: 92px 24px 36px;
  }

  .hero {
    min-height: auto;
    padding: 112px 0 72px;
  }

  .hero-grid {
    gap: 36px;
  }

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

  .accent-text-line {
    font-size: 24px;
  }

  .accent-text-line::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-paragraph {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .hero-buttons {
    width: 100%;
    margin-bottom: 34px;
  }

  .hero-buttons .btn {
    flex: 1 1 190px;
  }

  .stats-row {
    gap: 18px;
    justify-content: space-between;
  }

  .stat-num {
    font-size: 28px;
  }

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

  .visual-card {
    width: min(100%, 360px);
    border-radius: 18px;
    padding: 12px;
  }

  .floating-badge {
    padding: 8px 12px;
    border-radius: 12px;
  }

  .floating-badge span {
    font-size: 11px;
  }

  .badge-wp {
    left: -8px;
  }

  .badge-elem {
    right: -8px;
  }

  .badge-sm {
    left: 8px;
  }

  .nav-links, .nav-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    width: 100%;
    min-width: 0;
    padding: 26px 20px;
    gap: 16px;
    border-radius: 14px;
  }

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

  .service-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    font-size: 21px;
  }

  .service-title {
    font-size: 17px;
    overflow-wrap: anywhere;
  }

  .service-desc {
    font-size: 13.5px;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .skill-card {
    padding: 22px;
  }
  
  .timeline-line {
    display: none;
  }
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .timeline-step {
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }
  .step-node {
    margin-bottom: 0;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    font-size: 18px;
    border-radius: 16px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-form {
    padding: 26px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 520px) {
  h1, h2, h3, h4, h5, h6 {
    letter-spacing: 0;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 58px 0;
  }

  .section-title {
    font-size: 27px;
  }

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

  .btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 14px;
  }

  .hero {
    padding-top: 98px;
  }

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

  .accent-text-line {
    font-size: 21px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    flex-basis: auto;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding-top: 24px;
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }

  .stat-num {
    font-size: 24px;
  }

  .stat-label {
    font-size: 10px;
    line-height: 1.35;
  }

  .floating-badge {
    gap: 7px;
    padding: 7px 9px;
  }

  .floating-badge span {
    white-space: normal;
    line-height: 1.2;
  }

  .service-card {
    padding: 24px 18px;
  }

  .about-horizontal-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .skill-top,
  .skill-info {
    align-items: flex-start;
  }

  .skill-top {
    gap: 14px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .portfolio-preview {
    padding: 20px;
  }

  .portfolio-logo-text {
    font-size: 26px;
  }

  .cta-banner {
    padding: 58px 0;
  }

  .cta-container {
    border-radius: 20px;
    padding: 34px 20px;
  }

  .cta-title {
    font-size: 30px;
  }

  .cta-desc {
    font-size: 15px;
  }

  .contact-card {
    align-items: flex-start;
    padding: 18px;
  }

  .contact-card-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .contact-value {
    overflow-wrap: anywhere;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

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

  .accent-text-line {
    font-size: 19px;
  }

  .section-title {
    font-size: 24px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .stat-item {
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
  }

  .stat-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
