/* ============================================================
   ROI Mantra — Main Stylesheet
   Theme inspired by InternshipKaro (internshipkaro.vercel.app)
   Color Palette:
     Primary Gold:   #DEC484
     Gold Dark:      #C8B470
     Gold Darker:    #B8A05C
     Gold Light:     #F0E5B8
     Cream BG:       #FEFDF9
     Dark Olive:     #2D2A1F
   Font: Inter
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --primary:          #DEC484;
  --primary-dark:     #C8B470;
  --primary-darker:   #B8A05C;
  --primary-light:    #F0E5B8;
  --primary-lightest: #FEFDF9;
  --dark:             #2D2A1F;
  --dark-80:          rgba(45, 42, 31, 0.8);
  --dark-60:          rgba(45, 42, 31, 0.6);
  --dark-20:          rgba(45, 42, 31, 0.2);
  --dark-10:          rgba(45, 42, 31, 0.08);
  --white:            #ffffff;
  --text:             #2D2A1F;
  --text-muted:       #6B6455;
  --text-light:       #9E9485;
  --border:           rgba(222, 196, 132, 0.3);
  --border-dark:      rgba(222, 196, 132, 0.6);
  --shadow-sm:        0 2px 8px rgba(45, 42, 31, 0.08);
  --shadow-md:        0 4px 20px rgba(45, 42, 31, 0.12);
  --shadow-lg:        0 8px 40px rgba(45, 42, 31, 0.16);
  --shadow-gold:      0 8px 32px rgba(222, 196, 132, 0.3);
  --radius-sm:        6px;
  --radius-md:        12px;
  --radius-lg:        20px;
  --radius-xl:        32px;
  --font:             'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition:       0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max:    1200px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--primary-lightest);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; color: var(--dark); }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section-light  { background-color: var(--primary-lightest); }
.section-white  { background-color: var(--white); }
.section-dark   { background-color: var(--dark); }
.section-gold   { background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lightest) 100%); }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-darker);
  background: rgba(222, 196, 132, 0.2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}
.section-badge-light {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(222, 196, 132, 0.15);
  border: 1px solid rgba(222, 196, 132, 0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}
.section-title-light {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.section-desc-light {
  font-size: 1.0625rem;
  color: rgba(254, 253, 249, 0.75);
  line-height: 1.75;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg {
  padding: 0.9375rem 2.25rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  border: 2px solid var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-gold {
  background: var(--primary);
  color: var(--dark);
  border: 2px solid var(--primary);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,255,255,0.2);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
}
.btn-dark:hover {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}

/* ---- Top Bar ---- */
.topbar {
  background: var(--dark);
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(222, 196, 132, 0.15);
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: space-between;
  width:100%;
}
.topbar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(254, 253, 249, 0.75);
  font-size: 0.8125rem;
  transition: color var(--transition);
}
.topbar-link:hover { color: var(--primary); }
.topbar-link i { font-size: 0.75rem; color: var(--primary); }
.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(222, 196, 132, 0.25);
  color: rgba(254, 253, 249, 0.6);
  font-size: 0.6875rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ---- Header / Navigation ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--dark-10);
  transition: box-shadow var(--transition);
  padding: 10px;
}
.header-sticky {
  box-shadow: var(--shadow-md);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--dark);
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 900;
  border-radius: var(--radius-sm);
}
.logo-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.footer-logo .logo-name { color: var(--primary); }
.footer-logo .logo-icon { background: var(--primary); color: var(--dark); }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active .nav-link {
  color: var(--primary-darker);
  background: var(--dark-10);
}
.nav-link .fa-chevron-down {
  font-size: 0.625rem;
  transition: transform var(--transition);
}
.nav-dropdown:hover .fa-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.dropdown-item:hover {
  background: var(--primary-light);
  color: var(--dark);
}

.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero Section ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(222, 196, 132, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(222, 196, 132, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(222, 196, 132, 0.08);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 1.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(222, 196, 132, 0.12);
  border: 1px solid rgba(222, 196, 132, 0.25);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--primary); }
.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.0625rem;
  color: rgba(254, 253, 249, 0.65);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.hero-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(222, 196, 132, 0.2);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.hero-stat:hover {
  background: rgba(222, 196, 132, 0.1);
  border-color: rgba(222, 196, 132, 0.4);
  transform: translateY(-3px);
}
.hero-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.hero-stat-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(254, 253, 249, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Services Grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.services-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--primary-darker);
  transition: all var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: var(--primary);
  color: var(--dark);
}
.service-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}
.service-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin: 0;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-darker);
  transition: gap var(--transition);
  margin-top: auto;
}
.service-link:hover { gap: 0.65rem; }
.service-link i { font-size: 0.75rem; }

/* ---- Approach Steps ---- */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.approach-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: all var(--transition);
}
.approach-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--primary);
}
.step-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.approach-cta {
  text-align: center;
}

/* ---- About Section ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.about-content .section-title { text-align: left; }
.about-content .section-badge { display: inline-block; }
.about-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.feature-item > i {
  font-size: 1.125rem;
  color: var(--primary-darker);
  background: var(--primary-light);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.feature-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.feature-item p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.stat-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.stat-box:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
}
.stat-box-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-darker);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-box-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- CTA Banner ---- */
.section-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #3D3825 50%, var(--dark) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(222, 196, 132, 0.1) 0%, transparent 70%);
}
.cta-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-title span { color: var(--primary); }
.cta-desc {
  font-size: 1.0625rem;
  color: rgba(254, 253, 249, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* ---- Testimonials ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: var(--primary);
}
.quote-icon {
  font-size: 1.75rem;
  color: var(--primary);
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
  flex-grow: 1;
  margin: 0;
}
.testimonial-author { border-top: 1px solid var(--dark-10); padding-top: 1.25rem; }
.author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.2rem;
}
.author-title {
  font-size: 0.8125rem;
  color: var(--primary-darker);
  font-weight: 500;
}
.stars {
  display: flex;
  gap: 0.2rem;
  color: var(--primary);
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

/* ---- Case Studies ---- */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}
.case-study-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--primary);
}
.case-study-img {
  height: 180px;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-lightest) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.cs-placeholder {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.5;
}
.case-study-body { padding: 1.75rem; }
.cs-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}
.cs-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.cs-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-darker);
  background: var(--primary-light);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
}
.cs-description {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-darker);
  transition: gap var(--transition);
}
.read-more:hover { gap: 0.65rem; }
.read-more i { font-size: 0.75rem; }

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: var(--primary);
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.blog-date {
  font-size: 0.8125rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-darker);
  background: var(--primary-light);
  border-radius: 100px;
  padding: 0.2rem 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-title {
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.blog-title a {
  color: var(--dark);
  transition: color var(--transition);
}
.blog-title a:hover { color: var(--primary-darker); }
.blog-excerpt {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin: 0;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.text-center { text-align: center; }
.mt-4 { margin-top: 2.5rem; }

/* ---- Contact Section ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-title-light { text-align: left; }
.contact-info .section-badge-light { display: inline-block; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item > i {
  font-size: 1rem;
  color: var(--primary);
  background: rgba(222, 196, 132, 0.1);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.contact-item a, .contact-item span {
  font-size: 0.9375rem;
  color: rgba(254, 253, 249, 0.75);
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--primary); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--primary-lightest);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(222, 196, 132, 0.2);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%236B6455' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3D3825 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(222, 196, 132, 0.1) 0%, transparent 60%);
}
.page-hero-inner {
  position: relative;
  z-index: 2;
}
.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(254, 253, 249, 0.6);
}
.breadcrumb a { color: var(--primary); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary-dark); }
.breadcrumb-sep { color: rgba(254, 253, 249, 0.3); }

/* ---- Service Page ---- */
.service-page-content {
  padding: 5rem 0;
}
.service-page-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.service-body h2 {
  font-size: 1.625rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.service-body h2:first-child { margin-top: 0; }
.service-body h3 {
  font-size: 1.25rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.service-body p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.service-body ul, .service-body ol {
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.service-body li {
  font-size: 1rem;
  color: var(--text-muted);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.7;
}
.service-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.service-body ol { counter-reset: item; }
.service-body ol li { counter-increment: item; }
.service-body ol li::before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--primary-darker);
}
.service-body strong { color: var(--dark); font-weight: 700; }

/* Service Sidebar */
.service-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.sidebar-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--dark-10);
}
.sidebar-services { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.sidebar-service-link:hover, .sidebar-service-link.active {
  background: var(--primary-light);
  color: var(--dark);
}
.sidebar-service-link i {
  font-size: 0.875rem;
  color: var(--primary-darker);
  width: 20px;
  text-align: center;
}
.sidebar-cta {
  background: linear-gradient(135deg, var(--dark) 0%, #3D3825 100%);
  border: none;
  padding: 2rem;
  text-align: center;
}
.sidebar-cta h4 {
  color: var(--primary);
  border-bottom-color: rgba(222, 196, 132, 0.2);
}
.sidebar-cta p {
  font-size: 0.9rem;
  color: rgba(254, 253, 249, 0.65);
  margin-bottom: 1.25rem;
}

/* ---- Generic Page Content ---- */
.page-content {
  padding: 5rem 0;
}
.page-body {
  max-width: 820px;
}
.page-body h2 {
  font-size: 1.75rem;
  color: var(--dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.page-body h2:first-child { margin-top: 0; }
.page-body h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}
.page-body p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.page-body ul, .page-body ol {
  list-style: none;
  margin-bottom: 1.5rem;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.page-body li {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}
.page-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}
.page-body ol { counter-reset: li; }
.page-body ol li { counter-increment: li; }
.page-body ol li::before {
  content: counter(li) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--primary-darker);
}
.page-body strong { color: var(--dark); font-weight: 700; }

/* ---- Contact Page Specific ---- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-page-info .section-badge { display: inline-block; }
.contact-page-info .section-title { text-align: left; }
.contact-page-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}
.contact-page-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-page-item > i {
  font-size: 1rem;
  color: var(--primary-darker);
  background: var(--primary-light);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.contact-page-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary-darker);
  margin-bottom: 0.2rem;
}
.contact-page-item a, .contact-page-item span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.contact-page-item a:hover { color: var(--primary-darker); }

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: var(--primary-lightest);
}
.footer-top {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(222, 196, 132, 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
}
.footer-links-group {
  display: flex;
  gap: 3rem;
  /*flex-wrap: wrap;*/
}
.footer-links-group .footer-links {
  flex: 1;
  /*min-width: 130px;*/
  min-width: 160px;
}
.footer-brand .footer-tagline {
  font-size: 0.875rem;
  color: rgba(254, 253, 249, 0.55);
  line-height: 1.7;
  margin: 1rem 0 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.625rem;
}
.footer-links h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(254, 253, 249, 0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--primary); }
.footer-addresses {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.footer-address { display: block; }


.footer-address strong{color:#fff;}

.footer-address-country {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.625rem;
}
.footer-address p {
  font-size: 0.8125rem;
  color: rgba(254, 253, 249, 0.55);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.footer-address a {
  color: rgba(254, 253, 249, 0.7);
  transition: color var(--transition);
}
.footer-address a:hover { color: var(--primary); }
.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(254, 253, 249, 0.4);
  text-align: center;
  margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .services-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 2fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { order: -1; }
  .hero-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .case-studies-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .service-page-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-addresses { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    
    .footer-links-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
    
    
  .topbar .container { flex-direction: column; gap: 0.5rem; text-align: center; }
  .topbar-contacts { gap: 1rem; }

  /* Mobile nav */
  .hamburger { display: flex; }
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 1.5rem 2rem;
    overflow-y: auto;
    gap: 0.25rem;
    z-index: 999;
  }
  .nav.nav-open { display: flex; }
  .nav-item { width: 100%; }
  .nav-link {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
    justify-content: space-between;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--dark-10);
    border-radius: var(--radius-sm);
    padding: 0.25rem;
    margin-top: 0.25rem;
    display: none;
  }
  .nav-dropdown.dropdown-open .dropdown-menu { display: block; }
  .nav-cta { margin: 1rem 0 0; }

  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-4 { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .section { padding: 3.5rem 0; }
  .hero-content { padding: 3.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 1.75rem; }
}
