/* ============================================
   SHAH TAX INFINITY - Notebook Theme Styles
   ============================================ */

/* CSS Variables - Notebook Color Palette */
:root {
  --ink-blue: #f14c2f;
  --graphite-gray: #4a4a4a;
  --red-margin: #e74c3c;
  --cream-bg: #faf8f3;
  --paper-white: #ffffff;
  --paper-shadow: rgba(0, 0, 0, 0.08);
  --light-ruled-line: rgba(31, 58, 95, 0.08);
  --highlight-yellow: #fff4cc;
  --sticky-yellow: #fef9e7;
  --sticky-blue: #e8f4ff;
  --sticky-pink: #ffe8f0;
  --sticky-green: #e8ffe8;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: url(http://icons.iconarchive.com/icons/designcontest/vintage/32/Patent-Pen-icon.png) 0 30, progress;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background-color: var(--cream-bg);
  color: var(--graphite-gray);
  line-height: 1.7;
}

.App {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1;
  background: linear-gradient(
    to right,
    var(--red-margin) 0px,
    var(--red-margin) 2px,
    transparent 2px,
    transparent 80px
  ),
  repeating-linear-gradient(
    transparent,
    transparent 31px,
    var(--light-ruled-line) 31px,
    var(--light-ruled-line) 32px
  );
  background-color: var(--cream-bg);
}

/* Container */
.container-custom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px 0 100px;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.notebook-header {
  background-color: var(--paper-white);
  border-bottom: 3px solid var(--ink-blue);
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px var(--paper-shadow);
}

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

.logo img{
  height: 70px
}

.menu-toggle {
  display: none;
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--graphite-gray);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--ink-blue);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--ink-blue);
}

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

/* ============================================
   FOOTER STYLES
   ============================================ */
.notebook-footer {
  background-color: var(--ink-blue);
  color: var(--paper-white);
  padding: 3rem 50px 1.5rem 50px;
  margin-top: 4rem;
  border-top: 4px solid var(--red-margin);
}

.footer-content {
  display: grid;
  grid-template-columns: 3fr 1fr 2fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.footer-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--paper-white);
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-tagline {
  text-align: justify;
  font-size: 0.95rem;
  opacity: 0.9;
  font-style: italic;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--red-margin);
  padding-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-link {
  color: var(--paper-white);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
  opacity: 1;
  padding-left: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  opacity: 0.9;
}

.footer-icon {
  width: 18px;
  height: 18px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ============================================
   COMMON PAGE ELEMENTS
   ============================================ */
.page-container {
  min-height: calc(100vh - 200px);
}

.page-header-notebook {
  padding: 4rem 0 2rem;
  text-align: center;
  position: relative;
}

.page-title-notebook {
  font-size: 3rem;
  color: var(--ink-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.title-underline-center {
  width: 100px;
  height: 3px;
  background-color: var(--red-margin);
  margin: 0 auto;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--graphite-gray);
  margin-top: 1rem;
  font-style: italic;
}

.section-notebook {
  padding: 4rem 0;
}

.bg-paper-light {
  background-color: rgba(255, 255, 255, 0.5);
}

.section-header-notebook {
  margin-bottom: 3rem;
}

.section-title-notebook {
  font-size: 2.25rem;
  color: var(--ink-blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.title-underline {
  width: 80px;
  height: 3px;
  background-color: var(--red-margin);
  margin-top: 0.5rem;
}

.margin-note {
  font-size: 1.5rem;
  color: var(--red-margin);
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--red-margin);
}

/* ============================================
   HOME PAGE - HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(250, 248, 243, 0.85) 0%,
    rgba(250, 248, 243, 0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}

.hero-text-container {
  max-width: 700px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--ink-blue);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: 1px;
}

.notebook-title {
  position: relative;
}

.hero-tagline {
  font-size: 1.5rem;
  color: var(--graphite-gray);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.highlighted-text {
  background: linear-gradient(
    180deg,
    transparent 60%,
    var(--highlight-yellow) 60%
  );
  padding: 0 0.5rem;
  display: inline-block;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--graphite-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.page-curl {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    225deg,
    var(--cream-bg) 50%,
    rgba(0, 0, 0, 0.1) 50%
  );
  opacity: 0.3;
  z-index: 3;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  background-color: var(--ink-blue);
  color: var(--paper-white);
  border: none;
  min-width: 250px;
  padding: 0.75rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px var(--paper-shadow);
  display: inline-flex;
  gap: 0.5rem;
  white-space: nowrap; 
}

.btn-primary:hover {
  background-color: #db5123;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
  background-color: transparent;
  color: var(--ink-blue);
  border: 2px solid var(--ink-blue);
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--ink-blue);
  color: var(--paper-white);
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.notebook-button {
  border-radius: 4px;
}

.notebook-button-outline {
  border-radius: 4px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--sticky-yellow);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--paper-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  animation-delay: var(--delay, 0s);
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background-color: rgba(255, 215, 0, 0.4);
  border-radius: 2px;
}

.feature-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon-container {
  width: 60px;
  height: 60px;
  background-color: var(--ink-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--paper-white);
}

.feature-title {
  font-size: 1.35rem;
  color: var(--ink-blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 1rem;
  color: var(--graphite-gray);
  line-height: 1.6;
}

.sticky-note {
  position: relative;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(250, 248, 243, 0.9) 100%
  );
  border-top: 3px solid var(--red-margin);
  border-bottom: 3px solid var(--red-margin);
}

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

.cta-title {
  font-size: 2.5rem;
  color: var(--ink-blue);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.cta-description {
  font-size: 1.15rem;
  color: var(--graphite-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.content-box-notebook {
  background-color: var(--paper-white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--paper-shadow);
  border-left: 4px solid var(--red-margin);
}

.intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--graphite-gray);
}

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.note-card {
  background-color: var(--sticky-blue);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--paper-shadow);
  border-top: 3px solid var(--ink-blue);
}

.note-label {
  font-size: 1.5rem;
  color: var(--ink-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.note-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--graphite-gray);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 50px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--red-margin);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.timeline-marker {
  position: absolute;
  left: -42px;
  width: 40px;
  height: 40px;
  background-color: var(--ink-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px var(--cream-bg);
  z-index: 2;
}

.timeline-marker svg {
  color: var(--paper-white);
}

.timeline-content {
  flex: 1;
}

.timeline-year {
  font-size: 1.5rem;
  color: var(--red-margin);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-event {
  font-size: 1.1rem;
  color: var(--graphite-gray);
  line-height: 1.6;
}

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.strength-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--paper-white);
  padding: 1.25rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px var(--paper-shadow);
  transition: transform 0.3s ease;
}

.strength-item:hover {
  transform: translateX(10px);
}

.strength-icon {
  width: 24px;
  height: 24px;
  color: var(--ink-blue);
  flex-shrink: 0;
}

.strength-text {
  font-size: 1.05rem;
  color: var(--graphite-gray);
  font-weight: 500;
}

.certifications-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.certification-badge {
  background-color: var(--paper-white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--paper-shadow);
  border: 2px dashed var(--ink-blue);
  text-align: center;
  transition: border-style 0.3s ease, transform 0.3s ease;
}

.certification-badge:hover {
  border-style: solid;
  transform: scale(1.05);
}

.badge-content {
  font-size: 1.05rem;
  color: var(--ink-blue);
  font-weight: 600;
  line-height: 1.6;
}

/* ============================================
   CLIENTS PAGE
   ============================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

.client-stamp {
  background-color: var(--paper-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px var(--paper-shadow);
  border: 3px solid var(--ink-blue);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.client-stamp::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(31, 58, 95, 0.05) 0%,
    transparent 70%
  );
  transform: rotate(45deg);
}

.client-stamp:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.client-name {
  font-size: 1.2rem;
  color: var(--ink-blue);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.client-industry {
  font-size: 0.95rem;
  color: var(--graphite-gray);
  font-style: italic;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-sticky {
  background-color: var(--sticky-pink);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--paper-shadow);
  position: relative;
  transition: transform 0.3s ease;
}

.testimonial-sticky:hover {
  transform: translateY(-8px) rotate(-1deg);
}

.paper-pin {
  position: absolute;
  top: -8px;
  right: 30px;
  width: 16px;
  height: 16px;
  background-color: var(--red-margin);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star-icon {
  color: #f39c12;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--graphite-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
}

.author-name {
  font-size: 1.1rem;
  color: var(--ink-blue);
  font-weight: 700;
}

.author-company {
  font-size: 0.95rem;
  color: var(--graphite-gray);
  margin-top: 0.25rem;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.category-header-notebook {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.category-icon-wrapper {
  width: 80px;
  height: 80px;
  background-color: var(--ink-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px var(--paper-shadow);
}

.category-icon {
  width: 40px;
  height: 40px;
  color: var(--paper-white);
}

.category-title-notebook {
  font-size: 2.5rem;
  color: var(--ink-blue);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.category-underline {
  width: 120px;
  height: 3px;
  background-color: var(--red-margin);
  margin: 0 auto;
}

.services-grid-notebook {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card-notebook {
  background-color: var(--paper-white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--paper-shadow);
  border-left: 4px solid var(--ink-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
  animation-delay: var(--delay, 0s);
  position: relative;
  overflow: hidden;
}

.service-card-notebook::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(31, 58, 95, 0.05) 50%
  );
}

.service-card-notebook:hover {
  transform: translateY(-8px) rotate(0.5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-check-icon {
  width: 40px;
  height: 40px;
  background-color: var(--ink-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.check-icon {
  width: 24px;
  height: 24px;
  color: var(--paper-white);
}

.service-name-notebook {
  font-size: 1.35rem;
  color: var(--ink-blue);
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-desc-notebook {
  font-size: 1rem;
  color: var(--graphite-gray);
  line-height: 1.6;
}

.services-checklist {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-item-check {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background-color: var(--paper-white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--paper-shadow);
  border-left: 4px solid var(--ink-blue);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: slideInLeft 0.6s ease forwards;
  opacity: 0;
  animation-delay: var(--delay, 0s);
}

.service-item-check:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.checkbox-sketch {
  width: 32px;
  height: 32px;
  border: 3px solid var(--ink-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: var(--ink-blue);
  margin-top: 0.25rem;
}

.check-mark {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--paper-white);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-content {
  flex: 1;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.service-icon-sketch {
  width: 28px;
  height: 28px;
  color: var(--ink-blue);
}

.service-title-notebook {
  font-size: 1.5rem;
  color: var(--ink-blue);
  font-weight: 700;
}

.service-description-notebook {
  font-size: 1.05rem;
  color: var(--graphite-gray);
  line-height: 1.7;
}

.service-cta-box {
  background-color: var(--sticky-yellow);
  padding: 3rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 4px 12px var(--paper-shadow);
  max-width: 700px;
  margin: 0 auto;
}

.cta-title-notebook {
  font-size: 2rem;
  color: var(--ink-blue);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-text-notebook {
  font-size: 1.1rem;
  color: var(--graphite-gray);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card-notebook {
  background-color: var(--paper-white);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--paper-shadow);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: transform 0.3s ease;
}

.contact-card-notebook:hover {
  transform: translateX(10px);
}

.contact-icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--ink-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--paper-white);
}

.contact-text {
  flex: 1;
}

.contact-label {
  font-size: 0.9rem;
  color: var(--graphite-gray);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 1.05rem;
  color: var(--ink-blue);
  font-weight: 600;
}

.office-hours-note {
  background-color: var(--sticky-green);
  padding: 1.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--paper-shadow);
}

.note-content {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.note-content p {
  font-size: 1rem;
  color: var(--graphite-gray);
}

/* Form Styles */
.contact-form-section {
  background-color: var(--paper-white);
  padding: 2.5rem;
  border-radius: 4px;
  box-shadow: 0 4px 12px var(--paper-shadow);
  border-top: 4px solid var(--red-margin);
}

.form-header-notebook {
  margin-bottom: 2rem;
}

.form-title-notebook {
  font-size: 2rem;
  color: var(--ink-blue);
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group-notebook {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label-notebook {
  font-size: 1rem;
  color: var(--ink-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-notebook,
.textarea-notebook {
  padding: 0.875rem;
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid var(--light-ruled-line);
  background-color: transparent;
  color: var(--graphite-gray);
  font-family: 'Georgia', 'Times New Roman', serif;
  transition: border-color 0.3s ease;
}

.input-notebook:focus,
.textarea-notebook:focus {
  outline: none;
  border-bottom-color: var(--ink-blue);
}

.textarea-notebook {
  resize: vertical;
  min-height: 120px;
  border: 2px solid var(--light-ruled-line);
  border-radius: 4px;
  padding: 1rem;
}

.textarea-notebook:focus {
  border-color: var(--ink-blue);
}

.btn-submit-notebook {
  background-color: var(--ink-blue);
  color: var(--paper-white);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px var(--paper-shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
}

.btn-submit-notebook:hover {
  background-color: #152a43;
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .container-custom {
    padding: 0 60px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container-custom {
    padding: 0 30px;
  }
  
  .hero-text-container{
    margin: 30px 0;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--ink-blue);
    transition: all 0.3s ease;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: var(--paper-white);
    border-top: 2px solid var(--red-margin);

    display: flex;
    flex-direction: column;
    gap: 1rem;

    padding: 1.5rem 2rem;

    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;

    transition: all 0.3s ease;
  }

  .main-nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }

  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .page-title-notebook {
    font-size: 2.25rem;
  }
  
  .section-title-notebook {
    font-size: 1.75rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .timeline-container {
    padding-left: 30px;
  }
  
  .timeline-marker {
    left: -32px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .container-custom {
    padding: 0 20px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .clients-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.trustbar-watermark {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      to bottom,
      rgba(31, 58, 95, 0.04),
      rgba(31, 58, 95, 0.04) 1px,
      transparent 1px,
      transparent 32px
    );
  pointer-events: none;
  z-index: 0;
}

.trustbar-giant {
  position: relative;
  overflow: hidden;
}
.trustbar-giant-grid {
  position: relative;
  z-index: 2;
}

.trustbar-giant {
  padding: 6rem 0;
  background: var(--paper-white);
  border-top: 3px solid var(--red-margin);
  border-bottom: 3px solid var(--red-margin);
}

.trustbar-giant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 4rem;
  text-align: center;
}

.trust-giant-item {
  position: relative;
  padding-left: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.trust-giant-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Ledger vertical line */
.trust-giant-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: var(--ink-blue);
}

.trust-giant-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--ink-blue);
  line-height: 1;
}

.trust-giant-suffix {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink-blue);
  margin-left: 4px;
}

.trust-giant-text {
  margin-top: 1rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--graphite-gray);
}

.static-text {
  font-size: 3.5rem;
}

.section-subtitle {
  margin-top: 1rem;
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--graphite-gray);
}

.home-services-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

#home-services{
  border-top: 3px solid var(--red-margin);
  border-bottom: 3px solid var(--red-margin);
}

/* CARD */
.home-service-card {
  position: relative;
  background: var(--paper-white);
  padding: 3rem 2.5rem 2.5rem;
  border-left: 6px solid var(--ink-blue);
  box-shadow: 0 12px 30px var(--paper-shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

/* NUMBER */
.service-card-index {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(31, 58, 95, 0.08);
}

/* TITLE */
.home-service-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink-blue);
  margin-bottom: 1.5rem;
}

/* LIST */
.home-service-list {
  list-style: none;
  padding-left: 0;
}

.home-service-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  position: relative;
  font-size: 1.05rem;
  color: var(--graphite-gray);
}

.home-service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink-blue);
  font-weight: 700;
}

/* CTA */
.home-services-cta {
  margin-top: 3.5rem;
  text-align: center;
}

.services-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;

  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-blue);

  position: relative;
  padding-bottom: 4px;
}

/* underline animation */
.services-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;
  background: var(--red-margin);

  transition: width 0.3s ease;
}

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

/* ===============================
   HOME SERVICES – RESPONSIVE
   =============================== */

/* Tablet adjustments */
@media (max-width: 1024px) {
  .home-services-grid {
    gap: 2rem;
  }
}

/* Mobile & small tablets */
@media (max-width: 768px) {

  /* Grid becomes single column */
  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Card spacing */
  .home-service-card {
    padding: 2.5rem 2rem 2rem;
  }

  /* Large index number scaling */
  .service-card-index {
    font-size: 2.6rem;
    top: 14px;
    right: 16px;
  }

  /* Title & list readability */
  .home-service-title {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
  }

  .home-service-list li {
    font-size: 1rem;
  }

  /* CTA link tap target */
  .services-link {
    font-size: 1.15rem;
    padding: 0.6rem 0;
  }
}

/* Touch devices – disable hover lift */
@media (hover: none) {
  .home-service-card:hover {
    transform: none;
    box-shadow: 0 12px 30px var(--paper-shadow);
  }
}


/* ===============================
   WHO WE WORK WITH
   =============================== */

.who-we-work-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}

/* CARD */
.who-card {
  background: var(--sticky-yellow);
  padding: 2.5rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink-blue);
  text-align: center;

  box-shadow: 6px 6px 0 rgba(0,0,0,0.12);
  border-radius: 2px;

  transform: rotate(-1deg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* alternate rotation for natural feel */
.who-card:nth-child(even) {
  transform: rotate(1deg);
}

.who-card:hover {
  transform: translateY(-8px) rotate(0deg);
  box-shadow: 10px 10px 0 rgba(0,0,0,0.18);
}

.who-card {
  opacity: 0;
  transform: translateY(30px) rotate(-1deg);
}

.who-card.show {
  opacity: 1;
  transform: translateY(0) rotate(-1deg);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
@media (max-width: 1024px) {
  .who-we-work-grid {
    gap: 2rem;
  }
}

@media (max-width: 425px) {
  .who-we-work-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .who-card {
    font-size: 1.15rem;
    padding: 2rem 1.8rem;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.12);
  }
}

@media (hover: none) {
  .who-card:hover {
    transform: none;
    box-shadow: 6px 6px 0 rgba(0,0,0,0.12);
  }
}
