/*
 * Choosemee Media CSS Stylesheet - Premium Emerald & Gold Theme
 * Features: Deep emerald dark backgrounds, mint green and amber accents,
 * scroll-reveal animations, glassmorphism elements, and fully responsive layouts.
 * Optimized with fluid typography (clamp) and mobile viewport enhancements.
 */

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

/* --- Design Tokens --- */
:root {
  /* Colors */
  --primary: #00B67A;         /* Mint / Emerald Green */
  --primary-light: #34D399;   /* Light Emerald */
  --primary-dark: #047857;    /* Dark Emerald */
  
  --secondary: #0A1915;       /* Deep Forest Charcoal */
  --secondary-light: #132F2A; /* Slate Green */
  --accent: #F59E0B;          /* Amber Gold */
  
  --bg-light: #FAFAF9;        /* Off-white / Stone 50 */
  --bg-white: #FFFFFF;
  --bg-dark: #061814;         /* Premium dark forest green */
  
  --text-dark: #1C1917;       /* Stone 900 */
  --text-muted: #78716C;      /* Stone 500 */
  --text-light: #F5F5F4;      /* Stone 100 */
  
  /* Fonts */
  --font-headings: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 12px 20px -3px rgba(0, 182, 122, 0.06), 0 4px 8px -2px rgba(0, 182, 122, 0.04);
  --shadow-lg: 0 24px 36px -5px rgba(10, 25, 21, 0.08), 0 10px 16px -5px rgba(10, 25, 21, 0.04);
  --shadow-glow: 0 0 30px rgba(0, 182, 122, 0.25);
  --shadow-dark: 0 20px 30px rgba(0, 0, 0, 0.3);
}

/* --- Base Reset & Setup --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: clamp(0.95rem, 0.15vw + 0.9rem, 1.05rem); /* Responsive base font size */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.2;
}

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

li {
  list-style: none;
}

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

input, textarea, select, button {
  font-family: inherit;
  outline: none;
  border: none;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.fade-in {
  transform: none;
}

.reveal.slide-up {
  transform: translateY(45px);
}

.reveal.slide-down {
  transform: translateY(-45px);
}

.reveal.slide-left {
  transform: translateX(45px);
}

.reveal.slide-right {
  transform: translateX(-45px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* Animation Delays */
.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

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

.section {
  padding: clamp(60px, 8vw, 120px) 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2, .section-dark h3 {
  color: var(--text-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(40px, 5vw, 70px) auto;
}

.section-header .tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  padding: 4px 12px;
  background-color: rgba(0, 182, 122, 0.08);
  border-radius: 100px;
}

.section-dark .section-header .tag {
  background-color: rgba(52, 211, 153, 0.1);
  color: var(--primary-light);
}

.section-header h2 {
  font-size: clamp(1.8rem, 3.2vw + 1rem, 2.5rem); /* Responsive fluid header size */
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 0.2vw + 0.9rem, 1.05rem);
  font-weight: 500;
}

.section-dark .section-header p {
  color: #94A3B8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1.5vw + 8px, 16px) clamp(24px, 2vw + 12px, 32px);
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  gap: 10px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(0, 182, 122, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 182, 122, 0.4);
  filter: brightness(1.1);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

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

/* Secondary dark variant for white sections */
.btn-secondary-dark {
  background: transparent;
  color: var(--secondary);
  border: 1px solid rgba(10, 25, 21, 0.15);
}

.btn-secondary-dark:hover {
  background: rgba(10, 25, 21, 0.03);
  transform: translateY(-2px);
  border-color: var(--secondary);
}

.btn-light {
  background-color: var(--bg-white);
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

/* --- Navigation Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-normal);
  padding: clamp(16px, 2.5vw, 30px) 0;
}

.header.sticky {
  padding: 14px 0;
  background-color: rgba(250, 250, 249, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.header.sticky .logo span {
  color: var(--secondary);
}

.header.sticky .nav-link {
  color: var(--secondary);
}

.header.sticky .menu-toggle {
  color: var(--secondary);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-headings);
  font-size: clamp(1.2rem, 1.5vw + 0.8rem, 1.45rem);
  font-weight: 800;
  color: var(--text-light);
}

.logo span {
  transition: color var(--transition-fast);
}

.nav-list {
  display: flex;
  gap: clamp(20px, 2.5vw, 36px);
}

.nav-link {
  font-size: clamp(0.85rem, 0.2vw + 0.8rem, 0.95rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 8px 0;
  transition: all var(--transition-fast);
}

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

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-nav-call {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 182, 122, 0.15);
}

.btn-nav-call:hover {
  background-color: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(0, 182, 122, 0.25);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition-fast);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: clamp(110px, 15vw, 160px);
  padding-bottom: clamp(80px, 10vw, 130px);
  background: linear-gradient(135deg, #041E17 0%, #081112 100%);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

/* Animated background glow blobs */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
  opacity: 0.45;
}

.hero::before {
  width: clamp(250px, 35vw, 450px);
  height: clamp(250px, 35vw, 450px);
  background-color: var(--primary-dark);
  top: -10%;
  right: -5%;
  animation: float-blob-1 12s infinite ease-in-out;
}

.hero::after {
  width: clamp(300px, 40vw, 500px);
  height: clamp(300px, 40vw, 500px);
  background-color: #0d382d;
  bottom: -15%;
  left: -5%;
  animation: float-blob-2 15s infinite ease-in-out;
}

@keyframes float-blob-1 {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.1); }
  100% { transform: translate(0px, 0px) scale(1); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0px, 0px) scale(1); }
  50% { transform: translate(40px, -50px) scale(1.05); }
  100% { transform: translate(0px, 0px) scale(1); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(40px, 6vw, 70px);
}

.hero-content {
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(0, 182, 122, 0.1);
  color: var(--primary-light);
  border-radius: 100px;
  font-size: clamp(11px, 0.15vw + 11px, 13px);
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 182, 122, 0.15);
}

.hero-tag span {
  width: 6px;
  height: 6px;
  background-color: var(--primary-light);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--primary-light);
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw + 1rem, 3.6rem); /* Fully responsive typography */
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  color: var(--bg-white);
}

.hero h1 span.gradient-text {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: clamp(0.95rem, 0.2vw + 0.95rem, 1.1rem);
  color: #94A3B8;
  margin-bottom: 40px;
  max-width: 540px;
}

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

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 10;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: transform var(--transition-slow);
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(6, 24, 20, 0.4));
  pointer-events: none;
}

.hero-image-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

/* Floating elements in Hero */
.floating-card {
  position: absolute;
  padding: clamp(12px, 1.2vw + 4px, 18px) clamp(16px, 1.5vw + 4px, 22px);
  background: rgba(10, 25, 21, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 20;
  animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 8%;
  left: -15%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 12%;
  right: -8%;
  animation-delay: 3s;
}

.floating-card .icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(0, 182, 122, 0.15);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.floating-card h4 {
  font-size: 14px;
  color: var(--bg-white);
  margin-bottom: 2px;
}

.floating-card p {
  font-size: 11px;
  color: #94A3B8;
  margin-bottom: 0;
}

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

/* --- Stats Floating Box --- */
.stats-container {
  position: relative;
  z-index: 30;
  margin-top: -60px;
}

.stats-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 182, 122, 0.06);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 30px);
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(0, 0, 0, 0.08);
}

.stat-num {
  font-family: var(--font-headings);
  font-size: clamp(2rem, 3.5vw + 0.5rem, 2.85rem); /* Responsive stat numbers */
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-text {
  font-size: clamp(10px, 0.1vw + 10px, 13px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
}

/* --- About Us Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: clamp(16px, 2vw + 4px, 24px) clamp(20px, 2vw + 10px, 30px);
  border-radius: var(--radius-md);
  color: var(--bg-white);
  box-shadow: 0 10px 25px rgba(0, 182, 122, 0.3);
  text-align: center;
  min-width: 140px;
  z-index: 10;
}

.about-experience-badge h3 {
  font-size: clamp(1.6rem, 2vw + 0.5rem, 2rem);
  color: var(--bg-white);
  margin-bottom: 2px;
}

.about-experience-badge p {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0.95;
}

.about-content .motto {
  font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.35rem);
  font-weight: 700;
  color: var(--primary);
  margin: 20px 0 24px 0;
  line-height: 1.4;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(12px, 1.5vw, 20px);
  margin-bottom: 36px;
}

.about-bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: clamp(13px, 0.1vw + 13px, 15px);
  color: var(--secondary);
}

.about-bullet-item i {
  color: var(--primary);
  font-size: 18px;
}

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

.service-card {
  background-color: var(--secondary-light);
  padding: clamp(30px, 3.5vw, 44px) clamp(24px, 2.5vw, 32px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  background-color: #173832;
  box-shadow: var(--shadow-glow), 0 15px 35px rgba(0,0,0,0.3);
  border-color: rgba(0, 182, 122, 0.2);
}

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background-color: rgba(0, 182, 122, 0.12);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 28px;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon {
  background-color: var(--primary);
  color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(0, 182, 122, 0.3);
}

.service-card h3 {
  font-size: clamp(1.15rem, 0.5vw + 0.95rem, 1.25rem);
  margin-bottom: 14px;
}

.service-card p {
  color: #94A3B8;
  font-size: clamp(13px, 0.08vw + 13px, 14px);
  margin-bottom: 24px;
}

.service-card .price-tag {
  display: inline-block;
  padding: 4px 12px;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* --- Portfolio / Works Section --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 30px);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  transition: all var(--transition-normal);
  background-color: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 24, 20, 0.95), rgba(6, 24, 20, 0.4));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 2.5vw, 30px);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 5;
}

.portfolio-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-item:hover img {
  transform: scale(1.08);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay .category {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-light);
  margin-bottom: 6px;
}

.portfolio-overlay h3 {
  font-size: clamp(1.2rem, 1vw + 0.8rem, 1.45rem);
  color: var(--bg-white);
  margin-bottom: 12px;
}

.portfolio-overlay .view-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--bg-white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.portfolio-overlay .view-link i {
  transition: transform var(--transition-fast);
}

.portfolio-overlay .view-link:hover i {
  transform: translateX(4px);
}

/* --- Clients & Reviews Section --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: clamp(50px, 6vw, 70px);
}

.review-card {
  background-color: var(--secondary-light);
  padding: clamp(30px, 3.5vw, 44px);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  transition: all var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 182, 122, 0.15);
}

.review-quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: clamp(40px, 5vw, 54px);
  color: rgba(0, 182, 122, 0.06);
  font-family: serif;
  line-height: 1;
}

.review-stars {
  display: flex;
  gap: 4px;
  color: var(--accent);
  margin-bottom: 22px;
}

.review-text {
  font-size: clamp(14px, 0.05vw + 14px, 15px);
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 30px;
  font-style: italic;
}

.review-client {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.client-details h4 {
  font-size: 15px;
  color: var(--bg-white);
  margin-bottom: 2px;
}

.client-details p {
  font-size: 12px;
  color: #64748B;
}

/* Clients Grid List */
.clients-logo-slider {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 60px;
}

.clients-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 6vw, 80px);
  flex-wrap: wrap;
}

.client-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.5;
  transition: opacity var(--transition-fast);
  text-align: center;
  max-width: 160px;
}

.client-logo-item:hover {
  opacity: 1;
}

.client-logo-placeholder {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary-light);
  font-weight: 800;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.client-logo-item span {
  font-size: 12px;
  font-weight: 700;
  color: #94A3B8;
  letter-spacing: 0.5px;
}

/* --- CTA Section --- */
.cta {
  padding: clamp(60px, 8vw, 90px) 0;
  background: linear-gradient(135deg, #05261F, #081213);
  color: var(--text-light);
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.cta-glow-1, .cta-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  opacity: 0.3;
}

.cta-glow-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary);
  top: -100px;
  left: -100px;
}

.cta-glow-2 {
  width: 400px;
  height: 400px;
  background-color: var(--primary-dark);
  bottom: -150px;
  right: -100px;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 5;
  gap: 50px;
}

.cta-content {
  max-width: 650px;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 3vw + 0.8rem, 2.4rem);
  color: var(--bg-white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 16px;
  color: #94A3B8;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(40px, 6vw, 70px);
  align-items: start;
}

.contact-card {
  background-color: var(--bg-white);
  padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 182, 122, 0.05);
}

.contact-card h3 {
  font-size: clamp(1.5rem, 2vw + 0.5rem, 1.75rem);
  margin-bottom: 8px;
  color: var(--secondary);
}

.contact-card p {
  color: var(--text-muted);
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 24px;
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--secondary);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background-color: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.form-control:focus {
  background-color: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 182, 122, 0.12);
}

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

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

.info-item {
  background-color: var(--bg-white);
  padding: clamp(20px, 3vw, 30px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--transition-fast);
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 182, 122, 0.1);
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: rgba(0, 182, 122, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--secondary);
}

.info-details p, .info-details a {
  font-size: 14px;
  color: var(--text-muted);
}

.info-details a:hover {
  color: var(--primary);
}

.form-response {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.form-response.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-dark);
  color: #94A3B8;
  padding: clamp(60px, 8vw, 90px) 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr 1.25fr;
  gap: clamp(30px, 4vw, 50px);
  margin-bottom: 60px;
}

.footer-col h3 {
  color: var(--bg-white);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.footer-col.about-col p {
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.6;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

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

.footer-links a {
  font-size: 14px;
  color: #94A3B8;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--bg-white);
  font-size: 14px;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.newsletter-btn {
  padding: 12px 20px;
  background-color: var(--primary);
  color: var(--bg-white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.newsletter-btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-1px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
}

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

.footer-bottom-links a {
  font-size: 13px;
}

.footer-bottom-links a:hover {
  color: var(--primary-light);
}

/* --- Responsive Adjustments --- */

@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  
  .about-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-image-wrapper {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .services-grid, .portfolio-grid, .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero p {
    margin: 0 auto 30px auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-image-frame {
    transform: none;
  }
  
  .hero-image-frame:hover {
    transform: none;
  }
  
  /* Scale down floating tags so they fit neatly beside/below text */
  .floating-card {
    transform: scale(0.85);
  }
  
  .floating-card.card-1 {
    left: -5%;
    top: 5%;
  }
  
  .floating-card.card-2 {
    right: -5%;
    bottom: 5%;
  }
  
  /* Mobile Menu Button */
  .menu-toggle {
    display: block;
    color: var(--text-light);
  }
  
  .header.sticky .menu-toggle {
    color: var(--secondary);
  }
  
  /* Mobile Nav Overlay List */
  .nav-list {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    padding: 100px 40px 40px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: right var(--transition-normal);
    z-index: 999;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .nav-list.active {
    right: 0;
  }
  
  .nav-link {
    color: var(--text-light);
    font-size: 18px;
    display: block;
  }
  
  .nav-actions {
    display: none;
  }
  
  /* Show exactly 2 cards in one row on tablet and mobile viewports */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
  
  .service-card {
    padding: 24px 20px !important;
  }
  
  /* Native Swipe Horizontal Carousel for Reviews Grid on Tablet & Mobile */
  .reviews-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
    gap: 16px !important;
    padding-bottom: 24px !important;
    scrollbar-width: none !important; /* Firefox */
  }
  
  .reviews-grid::-webkit-scrollbar {
    display: none !important; /* Chrome / Safari */
  }
  
  .review-card {
    flex: 0 0 85% !important; /* Takes up 85% width for partial next slide reveal */
    scroll-snap-align: center !important;
    padding: 30px 24px !important;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-actions {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  /* Hide floating cards in hero to prevent overlap on small viewports */
  .floating-card {
    display: none !important;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr) !important; /* Force all stats into one row on tablet-mobile */
    gap: 10px !important;
  }
  
  .stat-item::after {
    display: block !important;
    right: -5px !important;
    height: 50% !important;
    top: 25% !important;
  }
  
  .stat-num {
    font-size: 18px !important;
  }
  
  .stat-text {
    font-size: 9px !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
  }
  
  .about-bullets {
    grid-template-columns: 1fr;
  }
  
  .about-experience-badge {
    right: 0px;
    bottom: -15px;
  }
}

@media (max-width: 480px) {
  /* Force buttons into one line by reducing spacing & font sizes */
  .hero-buttons {
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
  }
  
  .hero-buttons .btn {
    flex: 1 !important;
    padding: 10px 12px !important;
    font-size: 12px !important;
    white-space: nowrap !important;
    gap: 6px !important;
  }
  
  .cta-actions {
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
  }
  
  .cta-actions .btn {
    flex: 1 !important;
    padding: 10px 12px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
    gap: 6px !important;
  }

  /* Two cards per row on narrow screens with tight spacing to fit text */
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  
  .service-card {
    padding: 16px 12px !important;
  }
  
  .service-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 18px !important;
    margin-bottom: 16px !important;
  }
  
  .service-card h3 {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }
  
  .service-card p {
    font-size: 11px !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
  }
  
  .service-card .price-tag {
    font-size: 9px !important;
    padding: 2px 8px !important;
  }
  
  /* Hard force stats into one line for smallest mobile widths */
  .stats-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 6px !important;
  }
  
  .stats-card {
    padding: 14px 8px !important;
  }
  
  .stat-num {
    font-size: 14px !important;
    margin-bottom: 2px !important;
  }
  
  .stat-text {
    font-size: 8px !important;
    letter-spacing: 0.5px !important;
    line-height: 1.1 !important;
  }
  
  .stat-item:not(:last-child)::after {
    right: -3px !important;
    height: 50% !important;
    top: 25% !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Inner Pages Banner & Breadcrumbs --- */
.page-banner {
  padding: clamp(100px, 12vw, 140px) 0 clamp(40px, 6vw, 60px) 0;
  background: linear-gradient(135deg, #041E17 0%, #081112 100%);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-banner h1 {
  font-size: clamp(2rem, 3.5vw + 0.5rem, 2.85rem);
  color: var(--bg-white);
  margin-bottom: 12px;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #94A3B8;
  font-weight: 500;
}

.breadcrumbs a {
  color: #94A3B8;
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--primary-light);
}

.breadcrumbs span {
  color: var(--primary-light);
  font-weight: 700;
}
