/* ========================================
   SMRC4MONK - Complete Stylesheet
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #0a0e14;
  --text: #e8e8f0;
  --accent: #4a6860;
  --accent-secondary: #c4b5a0;
  --accent-pink: #e74c7c;
  --accent-glow: rgba(74, 104, 96, 0.3);
  --card-bg: rgba(20, 30, 35, 0.6);
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}
/* Animated gradient background */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(74, 104, 96, 0.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(196, 181, 160, 0.08) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
  z-index: -1;
}
/* ========================================
   FIXED CONTACT BUTTONS
   ======================================== */
.fixed-btn {
  position: fixed;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.fixed-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}
.fixed-call {
  left: 30px;
  background: #25d366;
}
.fixed-whatsapp {
  right: 30px;
  background: #25d366;
}
.fixed-whatsapp-green {
  left: 30px;
  background: #25d366;
}
.fixed-whatsapp-green:hover {
  background: #128C7E;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 15, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}
header:hover {
  background: rgba(10, 10, 15, 0.95);
}
nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-link {
  display: inline-block;
  text-decoration: none;
}
.logo-img {
  height: 45px;
  width: auto;
  transition: all 0.3s ease;
  cursor: pointer;
}
.logo-img:hover {
  transform: scale(1.05);
}
.logo-img.clicked {
  filter: hue-rotate(180deg) brightness(1.2);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--accent);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}
/* Dropdown Menu */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  list-style: none;
  margin-top: 0.5rem;
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.8rem 1.5rem;
  color: var(--text);
  text-decoration: none;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background: rgba(74, 104, 96, 0.2);
  color: var(--accent);
}
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}
/* ========================================
   HERO SECTION — FIXED FOR SCROLL OVERLAP
   ======================================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 5% 4rem;
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden; /* 👈 Prevents content bleed on scroll */
}
.hero-content {
  width: 100%;
}
.hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(74, 104, 96, 0.3);
}
.hero-image-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 104, 96, 0.2), rgba(196, 181, 160, 0.2));
  z-index: 1;
  mix-blend-mode: overlay;
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  opacity: 0.1;
  filter: blur(40px);
}
.shape1 {
  width: 200px;
  height: 200px;
  top: -50px;
  right: -50px;
}
.shape2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  left: -30px;
}
h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, #c4b5a0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: rgba(232, 232, 240, 0.7);
  margin-bottom: 3rem;
  max-width: 600px;
}
.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
/* ========================================
   BUTTONS
   ======================================== */
.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn-primary {
  background: linear-gradient(135deg, #4a6860, #5a7870);
  color: white;
  box-shadow: 0 10px 30px var(--accent-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px var(--accent-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(74, 104, 96, 0.1);
}
.btn-accent {
  background: var(--accent-pink);
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(231, 76, 124, 0.3);
}
.btn-accent:hover {
  background: #d43f6a;
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(231, 76, 124, 0.4);
}
/* ========================================
   FLOATING ORBS
   ======================================== */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}
.orb1 {
  width: 400px;
  height: 400px;
  background: #4a6860;
  top: 10%;
  right: 10%;
}
.orb2 {
  width: 300px;
  height: 300px;
  background: #c4b5a0;
  bottom: 20%;
  left: 5%;
}
/* ========================================
   CONTAINER
   ======================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}
/* ========================================
   SERVICES GRID
   ======================================== */
.services {
  padding: 8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}
.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(232, 232, 240, 0.6);
  margin-bottom: 5rem;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.card-icon {
  height: 80px;
  width: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.card:hover .service-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px rgba(196, 181, 160, 0.5));
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.card:hover {
  transform: translateY(-10px);
  border-color: rgba(74, 104, 96, 0.3);
  box-shadow: 0 20px 60px rgba(74, 104, 96, 0.2);
}
.card:hover::before {
  transform: scaleX(1);
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-secondary);
}
.card p {
  color: rgba(232, 232, 240, 0.7);
  line-height: 1.7;
}
/* Fix for resource links - NO BLUE */
.card a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.card a:hover,
.card a:visited,
.card a:link,
.card a:active {
  color: var(--accent-secondary);
  text-decoration: none;
}
/* ========================================
   CTA SECTIONS
   ======================================== */
.cta-analysis,
.cta-consultation {
  padding: 6rem 5%;
  text-align: center;
  background: rgba(10, 14, 20, 0.5);
}
.cta-analysis h2,
.cta-consultation h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.cta-subtitle {
  color: rgba(232, 232, 240, 0.6);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.analysis-form,
.consultation-form {
  display: flex;
  gap: 1rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.analysis-form input,
.consultation-form input {
  flex: 1;
  min-width: 200px;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 30, 35, 0.6);
  color: var(--text);
  font-size: 1rem;
}
.phone-input {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 30, 35, 0.6);
}
.country-code {
  font-size: 1rem;
  white-space: nowrap;
}
.phone-input input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0;
  min-width: auto;
}
.phone-input input:focus {
  outline: none;
}
input:focus {
  outline: none;
  border-color: var(--accent);
}
/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose-us {
  padding: 8rem 5%;
}
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.image-side {
  position: relative;
}
.image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(74, 104, 96, 0.3);
}
.image-frame::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: 10px;
  bottom: 10px;
  border: 3px solid var(--accent-pink);
  border-radius: 24px;
  z-index: -1;
}
.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}
.accent-line {
  width: 60px;
  height: 4px;
  background: var(--accent-pink);
  margin-bottom: 1.5rem;
}
.content-side h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.lead-text {
  font-size: 1.1rem;
  color: rgba(232, 232, 240, 0.7);
  margin-bottom: 3rem;
  line-height: 1.8;
}
.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.feature-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--accent-secondary);
}
.feature-item p {
  color: rgba(232, 232, 240, 0.6);
  line-height: 1.7;
}
/* ========================================
   PORTFOLIO GRID
   ======================================== */
.portfolio {
  padding: 8rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(180deg, transparent 0%, rgba(74, 104, 96, 0.03) 100%);
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}
.project-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--card-bg);
}
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img {
  transform: scale(1.1);
}
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.project-card:hover .project-overlay {
  transform: translateY(0);
}
.project-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.project-overlay p {
  color: rgba(232, 232, 240, 0.7);
}
/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 8rem 5%;
  text-align: center;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  /* Fixed: Increased minimum height to prevent content overflow */
  min-height: 350px;
}
.testimonial-card.accent-bg {
  background: linear-gradient(135deg, rgba(231, 76, 124, 0.2), rgba(231, 76, 124, 0.05));
  border-color: rgba(231, 76, 124, 0.2);
}
.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(74, 104, 96, 0.2);
}
.quote-icon {
  font-size: 4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.3;
}
.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--accent);
}
.testimonial-text {
  color: rgba(232, 232, 240, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.testimonial-role {
  color: rgba(232, 232, 240, 0.5);
  font-size: 0.9rem;
}
/* ========================================
   STATS SECTION
   ======================================== */
.stats {
  padding: 6rem 5%;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
.stat {
  padding: 2rem;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4a6860, #c4b5a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.stat-label {
  color: rgba(232, 232, 240, 0.6);
  font-size: 1.1rem;
}
/* ========================================
   FOOTER
   ======================================== */
footer {
  padding: 4rem 5% 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 14, 20, 0.5);
}
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--accent-secondary);
}
.footer-brand .footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, #4a6860, #c4b5a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  display: inline-block;
}
.footer-brand p {
  color: rgba(232, 232, 240, 0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(74, 104, 96, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s ease;
}
.social-links a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 0.8rem;
}
.footer-col ul li a,
.footer-col ul li {
  color: rgba(232, 232, 240, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover {
  color: var(--accent-secondary);
}
.btn-footer {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--accent-pink);
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  margin-top: 1rem;
  transition: all 0.3s ease;
  font-weight: 600;
}
.btn-footer:hover {
  background: var(--accent-pink);
  transform: translateY(-2px);
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.industry-tags span {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.9rem;
  color: rgba(232, 232, 240, 0.7);
  transition: all 0.3s ease;
}
.industry-tags span:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.copyright {
  color: rgba(232, 232, 240, 0.4);
  font-size: 0.9rem;
}
/* ========================================
   SERVICES PAGE STYLES
   ======================================== */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 5% 6rem;
  position: relative;
}
.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  margin-bottom: 1.5rem;
}
.services-overview {
  padding: 6rem 5%;
}
.services-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}
.service-detail-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem;
  transition: all 0.4s ease;
  scroll-margin-top: 100px;
}
.service-detail-card:hover {
  transform: translateY(-5px);
  border-color: rgba(74, 104, 96, 0.3);
  box-shadow: 0 20px 60px rgba(74, 104, 96, 0.2);
}
.service-detail-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(74, 104, 96, 0.1);
  border-radius: 16px;
}
.service-detail-card h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-secondary);
}
.service-intro {
  font-size: 1.1rem;
  color: rgba(232, 232, 240, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.feature-tag {
  padding: 0.6rem 1.2rem;
  background: rgba(74, 104, 96, 0.15);
  border: 1px solid rgba(74, 104, 96, 0.3);
  border-radius: 20px;
  font-size: 0.9rem;
  color: rgba(232, 232, 240, 0.8);
  transition: all 0.3s ease;
}
.feature-tag:hover {
  background: rgba(74, 104, 96, 0.25);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.process-section {
  padding: 8rem 5%;
  background: rgba(10, 14, 20, 0.5);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.process-step {
  text-align: center;
  padding: 2rem;
}
.process-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4a6860, #c4b5a0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-secondary);
}
.process-step p {
  color: rgba(232, 232, 240, 0.7);
  line-height: 1.7;
}
.why-services {
  padding: 8rem 5%;
}
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(232, 232, 240, 0.8);
  font-size: 1.05rem;
}
.benefit-item svg {
  color: var(--accent);
  flex-shrink: 0;
}
/* ========================================
   RESOURCES PAGE STYLES
   ======================================== */
.resources-intro {
  padding: 4rem 5%;
  text-align: center;
}
.resources-intro .lead-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: rgba(232, 232, 240, 0.7);
  line-height: 1.8;
}
.resource-grid-section {
  padding: 6rem 5% 12rem;
}
.resource-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.card:hover .resource-img {
  transform: scale(1.05);
}
.resource-link {
  color: var(--accent-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}
.resource-link:hover {
  color: var(--accent);
}
.cta-buttons-center {
  text-align: center;
  margin-top: 5rem;
}
.cta-buttons-center .btn {
  display: inline-block;
}
/* ========================================
   INDUSTRY PAGE STYLES
   ======================================== */
.industry-grid-section {
  padding: 6rem 5% 12rem;
}
/* ========================================
   PORTFOLIO PROJECTS
   ======================================== */
.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}
.project-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.project-card:hover .project-img {
  transform: scale(1.1);
}
.project-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95), transparent);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.project-card:hover .project-overlay {
  transform: translateY(0);
}
.project-overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-secondary);
}
.project-overlay p {
  color: var(--text);
  margin: 0;
}
/* No blue links in portfolio */
.project-link {
  color: var(--text);
  text-decoration: none;
  display: block;
  height: 100%;
}
/* CTA SPACING */
.portfolio-grid-section {
  padding-bottom: 6rem;
}
/* ========================================
   CAREERS PAGE
   ======================================== */
.culture-list {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.culture-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 1.5rem;
  color: var(--text);
  line-height: 1.9;
}
.culture-list li::before {
  content: "•";
  color: var(--accent);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.3em;
}
.careers-openings .card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.careers-openings .card p {
  margin-bottom: 0.8rem;
}
.careers-openings .card a.btn {
  align-self: flex-start;
  margin-top: 1rem;
}
.careers-culture {
  padding-bottom: 8rem;
}
/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
  padding-bottom: 8rem;
}
.split-section {
  gap: 5rem;
}
.content-side h2,
.form-side h2 {
  margin-bottom: 1.5rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.contact-list li {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}
.contact-link {
  color: var(--accent-secondary);
  text-decoration: none;
}
.contact-link:hover {
  color: var(--accent);
  text-decoration: underline;
}
.business-hours {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  color: rgba(232, 232, 240, 0.8);
}
.contact-form {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(20, 30, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea {
  resize: vertical;
}
.contact-social {
  margin-top: 2rem;
  gap: 1rem;
  display: flex;
}
/* ========================================
   CTA BUTTON SPACING
   ======================================== */
.cta-buttons-center {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .cta-buttons-center {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
  }
}
/* ========================================
   DROPDOWN HOVER COLOR
   ======================================== */
select option:hover {
  background: #4a6860 !important;
  color: white !important;
}
/* ========================================
   MOBILE RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .hero {
    gap: 3rem;
  }
  .split-section {
    gap: 3rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-large {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 6rem;
  }
  .hero-visual {
    order: -1;
  }
  h1 {
    font-size: 2.5rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .grid, 
  .project-grid {
    grid-template-columns: 1fr;
  }
  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .image-side {
    order: -1;
  }
  .analysis-form,
  .consultation-form {
    flex-direction: column;
  }
  .analysis-form input,
  .consultation-form input,
  .phone-input {
    width: 100%;
    min-width: 100%;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .fixed-btn {
    width: 50px;
    height: 50px;
    bottom: 20px;
  }
  .fixed-call {
    left: 20px;
  }
  .fixed-whatsapp {
    right: 20px;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  .page-hero {
    min-height: 50vh;
    padding: 8rem 5% 4rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  header {
    padding: 1rem 5%;
  }
  .logo-img {
    height: 35px;
  }
  h1 {
    font-size: 2rem;
  }
  .hero {
    padding-top: 5rem;
  }
  .hero-visual {
    height: 300px;
  }
  .services,
  .portfolio,
  .cta-analysis,
  .cta-consultation,
  .why-choose-us {
    padding: 4rem 5%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-number {
    font-size: 2.5rem;
  }
  .card {
    padding: 2rem;
  }
  .feature-item {
    flex-direction: column;
    gap: 1rem;
  }
  .fixed-btn {
    width: 45px;
    height: 45px;
  }
  .fixed-btn svg {
    width: 20px;
    height: 20px;
  }
}
/* ========================================
   SMOOTH SCROLL & SELECTION
   ======================================== */
html {
  scroll-behavior: smooth;
}
::selection {
  background: var(--accent);
  color: white;
}
/* Scroll offset for anchor links */
#branding,
#uiux,
#marketing,
#webdev {
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  #branding,
  #uiux,
  #marketing,
  #webdev {
    scroll-margin-top: 80px;
  }
}
/* ========================================
   LARGE SCREENS
   ======================================== */
@media (min-width: 1920px) {
  .container,
  nav,
  .hero,
  .services,
  .portfolio {
    max-width: 1600px;
  }
}
/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .fixed-btn,
  header,
  .mobile-menu-btn,
  .orb {
    display: none;
  }
  body {
    background: white;
    color: black;
  }
  .card,
  .project-card {
    break-inside: avoid;
  }
}
/* Process Section Styles */
.process-section {
  padding: 100px 0;
  background: #0d1117;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(218, 196, 157, 0.3), transparent);
}
.section-title {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.process-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-align: center;
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(218, 196, 157, 0.03), rgba(198, 176, 137, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.process-step:hover {
  transform: translateY(-8px);
  border-color: rgba(218, 196, 157, 0.4);
  box-shadow: 0 20px 40px rgba(218, 196, 157, 0.15);
}
.process-step:hover::before {
  opacity: 1;
}
.process-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(218, 196, 157, 0.15), rgba(198, 176, 137, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.process-step:hover .process-icon {
  background: linear-gradient(135deg, rgba(218, 196, 157, 0.3), rgba(198, 176, 137, 0.3));
  transform: scale(1.1) rotate(5deg);
}
.process-icon svg {
  width: 32px;
  height: 32px;
  stroke: rgba(218, 196, 157, 0.9);
  transition: all 0.3s ease;
}
.process-step:hover .process-icon svg {
  stroke: #DAC49D;
}
.process-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.process-step p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
  .process-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .process-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 15px;
  }
  .process-step {
    padding: 2rem 1.5rem;
  }
  .process-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
  }
  .process-icon svg {
    width: 28px;
    height: 28px;
  }
  .process-step h3 {
    font-size: 1.25rem;
  }
  .process-step p {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 1.75rem;
  }
  .process-step {
    padding: 1.75rem 1.25rem;
  }
}
/* Legal Links in Footer */
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.legal-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.legal-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-links a:hover {
  color: #DAC49D;
  text-decoration: underline;
}
.legal-links span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}
/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    gap: 0.75rem;
  }
  .legal-links {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 0.8rem;
  }
}
/* ========================================
   LEGAL PAGES (PRIVACY, COOKIE, TERMS)
   ======================================== */
.legal-page {
  padding: 6rem 5% 8rem;
}
.legal-page .container {
  max-width: 800px;
}
.legal-page h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.legal-page .subheading {
  text-align: center;
  color: var(--accent-secondary);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}
.legal-content {
  line-height: 1.8;
  color: rgba(232, 232, 240, 0.85);
}
.legal-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1.5rem;
  color: var(--accent-secondary);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.legal-content h3 {
  font-size: 1.3rem;
  margin: 2rem 0 1rem;
  color: var(--accent);
}
.legal-content p,
.legal-content ul,
.legal-content ol {
  margin-bottom: 1.5rem;
}
.legal-content ul,
.legal-content ol {
  padding-left: 1.5rem;
}
.legal-content li {
  margin-bottom: 0.8rem;
  line-height: 1.7;
}
.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}
.legal-content a:hover {
  color: var(--accent-secondary);
}
/* Last updated notice */
.last-updated {
  text-align: center;
  color: rgba(232, 232, 240, 0.6);
  font-style: italic;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
/* Responsive */
@media (max-width: 768px) {
  .legal-page {
    padding: 4rem 5% 6rem;
  }
  .legal-page h1 {
    font-size: 2rem;
  }
  .legal-content h2 {
    font-size: 1.4rem;
  }
  .legal-content h3 {
    font-size: 1.2rem;
  }
}
/* ========================================
   DROPDOWN HOVER FIX
   ======================================== */

/* Ensure dropdown appears on hover for desktop */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
  }
  
  /* Smooth transition */
  .dropdown-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
}

/* Make sure dropdown parent link doesn't navigate on hover */
.dropdown > a {
  cursor: pointer;
}