/* =========================================
   BOLADFY — COMPLETE PROFESSIONAL CSS
========================================= */

/* =========================================
   RESET
========================================= */

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

:root {
  --green: #0f766e;
  --green-dark: #115e59;
  --dark: #101820;
  --text: #17202a;
  --muted: #667085;
  --border: #e4e7ec;
  --light: #f5f7f8;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  font-size: 16px;
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}


/* =========================================
   TYPOGRAPHY SYSTEM
========================================= */

/* Main section labels */

.eyebrow,
.section-label,
.about-label {
  display: inline-block;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}

/* Main section headings */

.section h2,
.services-heading h2,
.about-section h2,
.contact-info h2,
.why-boladfy-heading h2 {
  color: #111827;
  font-weight: 800;
}

/* Normal paragraph text */

p {
  font-weight: 400;
}


/* =========================================
   HEADER
========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -1.7px;
}

.brand span {
  color: var(--green);
}

.desktop-nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn,
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 20px;
}

.menu-btn {
  display: none;
}


/* =========================================
   MOBILE NAVIGATION
========================================= */

.mobile-nav {
  display: none;
}

.mobile-nav.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 4%;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.mobile-nav a {
  font-size: 15px;
  font-weight: 700;
}


/* =========================================
   SEARCH
========================================= */

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 20, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 500;
}

.search-overlay.active {
  display: flex;
}

.search-container {
  width: min(600px, 90%);
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  position: relative;
}

.close-search {
  position: absolute;
  right: 20px;
  top: 20px;
  border: none;
  background: none;
  font-size: 22px;
  cursor: pointer;
}

.search-container h2 {
  font-size: 35px;
  line-height: 1.15;
  margin-bottom: 20px;
}

.search-container input {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 7px;
  margin-bottom: 12px;
  font-size: 15px;
}

.search-submit {
  padding: 12px 20px;
  border: none;
  background: var(--green);
  color: #ffffff;
  border-radius: 7px;
  cursor: pointer;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
  padding: 85px 0;
}

.grey {
  background: var(--light);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.section h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -2px;
}

.view-all,
.text-link {
  color: var(--green);
  font-weight: 800;
}


/* =========================================
   BUTTONS
========================================= */

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 13px 21px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--green);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #cbd5e1;
  background: #ffffff;
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}


/* =========================================
   HERO
========================================= */

.hero {
  padding: 95px 0 85px;
  background: linear-gradient(
    180deg,
    #f4f9f7,
    #ffffff
  );
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 70px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(50px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: -4px;
  font-weight: 900;
  color: #101820;
}

.hero h1 span {
  color: var(--green);
  display: block;
}

.hero-content p {
  max-width: 650px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 25px 0 30px;
}

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


/* =========================================
   FEATURED STORY
========================================= */

.featured-story {
  min-height: 450px;
  border-radius: 14px;

  background-image:
    linear-gradient(
      180deg,
      rgba(5, 15, 20, 0.03) 20%,
      rgba(5, 15, 20, 0.9) 100%
    ),
    url("https://images.pexels.com/photos/5668505/pexels-photo-5668505.jpeg?auto=compress&cs=tinysrgb&w=1200");

  background-size: cover;
  background-position: center;

  color: #ffffff;
  padding: 32px;

  display: flex;
  align-items: flex-end;

  position: relative;
  overflow: hidden;

  box-shadow: 0 20px 45px rgba(16, 24, 40, 0.15);

  transition: transform 0.3s ease;
}

.featured-story:hover {
  transform: translateY(-5px);
}

.featured-top {
  position: absolute;
  top: 30px;
  left: 32px;
  display: flex;
  gap: 10px;
}

.featured-top span {
  color: #a7f3d0;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.featured-bottom {
  position: relative;
  z-index: 2;
}

.story-category {
  color: #a7f3d0;
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 900;
}

.featured-bottom h2 {
  font-size: 31px;
  line-height: 1.2;
  font-weight: 800;
  margin: 12px 0;
}

.featured-bottom p {
  color: #e2e8f0;
  margin-bottom: 15px;
}

.featured-bottom a {
  color: #a7f3d0;
  font-weight: 800;
}

.story-meta {
  font-size: 10px;
  letter-spacing: 1px;
  color: #cbd5e1;
  margin-bottom: 15px;
}


/* =========================================
   TRUST STRIP
========================================= */

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-items > div {
  padding: 24px;
  border-right: 1px solid var(--border);
}

.trust-items > div:last-child {
  border-right: none;
}

.trust-items strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.trust-items span {
  font-size: 12px;
  color: var(--muted);
}


/* =========================================
   ARTICLE CARDS
========================================= */

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.article-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(16, 24, 40, 0.1);
}

.article-image {
  height: 210px;
  padding: 18px;
  display: flex;
  align-items: flex-end;

  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;

  background-size: cover;
  background-position: center;

  position: relative;
}

.article-image::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(0, 0, 0, 0.68)
  );
}

.article-image span {
  position: relative;
  z-index: 2;
  color: #ffffff;
}


/* ARTICLE IMAGES */

.business-image {
  background-image:
    url("https://images.pexels.com/photos/7433897/pexels-photo-7433897.jpeg?auto=compress&cs=tinysrgb&w=1000");
}

.tech-image {
  background-image:
    url("https://images.pexels.com/photos/9908661/pexels-photo-9908661.jpeg?auto=compress&cs=tinysrgb&w=1000");
}

.travel-image {
  background-image:
    url("https://images.pexels.com/photos/4173236/pexels-photo-4173236.jpeg?auto=compress&cs=tinysrgb&w=1000");
}

.article-body {
  padding: 24px;
}

.article-meta {
  font-size: 11px;
  color: #7b8492;
  font-weight: 800;
}

.article-body h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 800;
  margin: 10px 0;
}

.article-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.author {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;

  display: grid;
  place-items: center;

  font-size: 12px;
  font-weight: 900;
}

.author span {
  font-size: 11px;
  color: var(--muted);
}

.read-link {
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}


/* =========================================
   BUSINESS
========================================= */

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

.category-intro p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 580px;
  margin: 18px 0 25px;
}

.numbered-list {
  border-top: 1px solid #d7dce2;
}

.numbered-list a {
  display: grid;
  grid-template-columns: 50px 1fr 25px;
  gap: 15px;

  padding: 22px 0;

  border-bottom: 1px solid #d7dce2;
}

.numbered-list span {
  color: var(--green);
  font-weight: 900;
}

.numbered-list b {
  color: var(--green);
}


/* =========================================
   TECHNOLOGY
========================================= */

.technology-image {
  min-height: 390px;
  border-radius: 14px;

  background-image:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0.25)
    ),
    url("https://images.pexels.com/photos/9908661/pexels-photo-9908661.jpeg?auto=compress&cs=tinysrgb&w=1200");

  background-size: cover;
  background-position: center;

  box-shadow: 0 15px 35px rgba(16, 24, 40, 0.1);
}


/* =========================================
   REVIEWS
========================================= */

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.10);
}

.review-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.review-one .review-image {
  background-image:
    url("https://images.pexels.com/photos/5257005/pexels-photo-5257005.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.review-two .review-image {
  background-image:
    url("https://images.pexels.com/photos/7845356/pexels-photo-7845356.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.review-three .review-image {
  background-image:
    url("https://images.pexels.com/photos/34774312/pexels-photo-34774312.jpeg?auto=compress&cs=tinysrgb&w=900");
}

.review-content {
  padding: 28px;
}

.review-card span {
  display: inline-block;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.review-card h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 800;
  margin: 13px 0;
  color: #111827;
}

.review-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.review-card a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.review-card a:hover {
  gap: 10px;
}


/* =========================================
   REVIEW PROCESS
========================================= */

.review-process {
  background: #ffffff;
}

.process-header {
  max-width: 650px;
  margin-bottom: 45px;
}

.process-header p {
  color: var(--muted);
  margin-top: 15px;
  font-size: 17px;
  line-height: 1.7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.process-grid > div {
  border-top: 2px solid var(--green);
  padding-top: 20px;
}

.process-grid span {
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
}

.process-grid h3 {
  margin: 12px 0 7px;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.process-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================
   TRAVEL
========================================= */

.travel-banner {
  min-height: 360px;

  border-radius: 14px;

  padding: 50px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 30px;

  color: #ffffff;

  background-image:
    linear-gradient(
      90deg,
      rgba(8, 18, 24, 0.9),
      rgba(8, 18, 24, 0.2)
    ),
    url("https://images.pexels.com/photos/4173236/pexels-photo-4173236.jpeg?auto=compress&cs=tinysrgb&w=1400");

  background-size: cover;
  background-position: center;
}

.travel-banner .eyebrow {
  color: #a7f3d0;
}

.travel-banner h2 {
  max-width: 600px;
  color: #ffffff;
}

.travel-banner p {
  color: #e2e8f0;
  max-width: 650px;
  margin-top: 12px;
}


/* =========================================
   GUIDES
========================================= */

.guide-list {
  border-top: 1px solid var(--border);
  margin-top: 35px;
}

.guide-list a {
  display: grid;
  grid-template-columns: 130px 1fr 30px;
  gap: 20px;
  align-items: center;

  padding: 23px 0;

  border-bottom: 1px solid var(--border);
  transition: padding 0.2s ease;
}

.guide-list a:hover {
  padding-left: 8px;
}

.guide-list span {
  color: var(--green);
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 900;
}

.guide-list strong {
  font-size: 19px;
  line-height: 1.4;
}

.guide-list b {
  color: var(--green);
}


/* =========================================
   SERVICES
========================================= */

.services-section {
  padding: 100px 6%;
  background: #f8fafc;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-heading {
  max-width: 700px;
  margin-bottom: 55px;
}

.services-heading h2 {
  font-size: 46px;
  line-height: 1.15;
  margin: 10px 0 18px;
}

.services-heading p {
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.service-icon {
  width: 55px;
  height: 55px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #eff6ff;
  border-radius: 14px;

  font-size: 25px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 21px;
  color: #111827;
  margin: 0 0 14px;
  line-height: 1.4;
  font-weight: 800;
}

.service-card p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card a {
  color: #2563eb;
  font-weight: 700;
  font-size: 14px;
}

.service-card a:hover {
  text-decoration: underline;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
  padding: 100px 6%;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-label {
  color: #2563eb;
}

.about-section h2 {
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 55px;
}

.about-section h2 span {
  color: #2563eb;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: start;
}

.about-content h3 {
  font-size: 26px;
  color: #111827;
  margin: 0 0 18px;
  font-weight: 800;
}

.about-content p {
  color: #64748b;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 650px;
}

.about-box {
  background: #f8fafc;
  padding: 35px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
}

.about-item {
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
}

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

.about-item strong {
  display: block;
  font-size: 17px;
  color: #111827;
  margin-bottom: 6px;
}

.about-item span {
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
  padding: 100px 6%;
  background: #f8fafc;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 70px;
  align-items: start;
}

.contact-info {
  padding-top: 10px;
}

.section-label {
  color: #2563eb;
}

.contact-info h2 {
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 20px;
}

.contact-info > p {
  font-size: 17px;
  line-height: 1.7;
  color: #64748b;

  margin-bottom: 40px;
  max-width: 520px;
}

.contact-item {
  margin-bottom: 28px;
}

.contact-item strong {
  display: block;
  font-size: 17px;
  color: #111827;
  margin-bottom: 7px;
}

.contact-item p {
  margin: 0;
  color: #64748b;
  line-height: 1.6;
}

.contact-form {
  background: #ffffff;
  padding: 40px;

  border-radius: 20px;
  border: 1px solid #e5e7eb;

  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-form h3 {
  font-size: 25px;
  color: #111827;
  margin: 0 0 25px;
  font-weight: 800;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  padding: 16px;

  border: 1px solid #e2e8f0;
  border-radius: 10px;

  font-size: 15px;

  outline: none;

  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2563eb;

  box-shadow:
    0 0 0 3px rgba(37, 99, 235, 0.08);
}

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

.contact-form button {
  padding: 16px 22px;

  border: none;
  border-radius: 10px;

  background: #2563eb;
  color: #ffffff;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.25s ease;
}

.contact-form button:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}


/* =========================================
   NEWSLETTER
========================================= */

.newsletter {
  padding: 80px 6%;
  background: #111827;
  color: #ffffff;
}

.newsletter-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 60px;
  align-items: center;
}

.newsletter .eyebrow {
  color: #60a5fa;
}

.newsletter h2 {
  font-size: 40px;
  line-height: 1.2;
  color: #ffffff;
  margin: 10px 0 15px;
  font-weight: 800;
}

.newsletter p {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.7;
}

.newsletter form {
  display: flex;
  gap: 12px;

  align-items: center;
  flex-wrap: wrap;
}

.newsletter input {
  flex: 1;
  min-width: 220px;

  padding: 16px 18px;

  border: 1px solid #475569;
  border-radius: 10px;

  background: #ffffff;
  color: #111827;

  font-size: 15px;
  outline: none;
}

.newsletter input:focus {
  border-color: #60a5fa;
}

.newsletter .btn-primary {
  border: none;
  cursor: pointer;
}

#subscribeMessage {
  width: 100%;
  color: #93c5fd;
  margin-top: 5px;
}


/* =========================================
   FOOTER
========================================= */

footer {
  background: #111827;
  color: #ffffff;
  padding: 70px 20px 25px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;

  gap: 50px;
  padding-bottom: 55px;
}

.footer-logo {
  display: inline-block;
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.footer-logo span {
  color: #3b82f6;
}

.footer-tagline {
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 600;
  margin: 15px 0 12px;
}

.footer-description {
  max-width: 360px;
  color: #9ca3af !important;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.footer-note {
  max-width: 360px;
  color: #6b7280 !important;
  font-size: 12px;
  line-height: 1.6;
}

footer h4 {
  color: #ffffff;
  font-size: 14px;
  margin: 5px 0 20px;
  font-weight: 800;
}

footer a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  display: block;
  margin-bottom: 13px;
  transition: color 0.2s ease;
}

footer a:hover {
  color: #ffffff;
}

.footer-connect-text {
  color: #9ca3af !important;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-contact-link {
  color: #ffffff !important;
  font-weight: 700;
}

.footer-contact-link:hover {
  color: #3b82f6 !important;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;

  border-top: 1px solid #374151;
  padding-top: 22px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 20px;
}

.copyright {
  color: #6b7280;
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  display: inline;
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom-links span {
  color: #4b5563;
}


/* =========================================
   WHY BOLADFY
========================================= */

.why-boladfy {
  background: #ffffff;
  padding: 90px 20px;
  border-top: 1px solid #e5e7eb;
}

.why-boladfy-container {
  max-width: 1100px;
  margin: 0 auto;
}

.why-boladfy-heading {
  max-width: 720px;
  margin-bottom: 50px;
}

.why-boladfy-heading .eyebrow {
  color: #2563eb;
}

.why-boladfy-heading h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 20px;
}

.why-boladfy-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0;
}

.why-boladfy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-boladfy-card {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-boladfy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.why-icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #2563eb;
  color: #ffffff;

  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;

  margin-bottom: 24px;
}

.why-boladfy-card h3 {
  font-size: 22px;
  color: #111827;
  margin: 0 0 12px;
  font-weight: 800;
}

.why-boladfy-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}


/* =========================================
   ARTICLE READER
========================================= */

.article-reader {
  display: none;
  background: #ffffff;
  padding: 90px 20px 100px;
  border-top: 1px solid #e5e7eb;
}

.article-reader-container {
  max-width: 850px;
  margin: 0 auto;
}

.back-to-articles {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  border: none;
  background: transparent;

  color: #2563eb;
  font-size: 14px;
  font-weight: 700;

  cursor: pointer;
  padding: 0;
  margin-bottom: 45px;

  transition: 0.2s ease;
}

.back-to-articles:hover {
  transform: translateX(-4px);
}

.article-reader-category {
  display: inline-block;
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.article-reader h1 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: #111827;
  margin: 0 0 22px;
  font-weight: 800;
}

.article-reader-meta {
  color: #64748b;
  font-size: 13px;
  padding-bottom: 32px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}

.article-reader-content {
  color: #374151;
  font-size: 18px;
  line-height: 1.85;
}

.article-reader-content p {
  margin: 0 0 26px;
}

.article-reader-content h2 {
  color: #111827;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
  margin-top: 48px;
  margin-bottom: 17px;
}

.article-reader-content h3 {
  color: #111827;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
  margin-top: 36px;
  margin-bottom: 14px;
}

.article-reader-content ul {
  margin: 20px 0 30px;
  padding-left: 25px;
}

.article-reader-content li {
  margin-bottom: 12px;
  padding-left: 5px;
}


/* =========================================
   AFFILIATE DISCLOSURE
========================================= */

.affiliate-disclosure {
  background: #f8fafc;
  padding: 80px 20px;
  border-top: 1px solid #e5e7eb;
}

.affiliate-disclosure-container {
  max-width: 850px;
  margin: 0 auto;
}

.affiliate-disclosure .eyebrow {
  color: #2563eb;
}

.affiliate-disclosure h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 25px;
  color: #111827;
  font-weight: 800;
}

.affiliate-disclosure h3 {
  font-size: 22px;
  margin: 35px 0 12px;
  color: #111827;
  font-weight: 800;
}

.affiliate-disclosure p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 20px;
}


/* =========================================
   LEGAL PAGES
========================================= */

.legal-section {
  padding: 90px 20px;
  background: #ffffff;
}

.legal-section.legal-grey {
  background: #f6f7f8;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-container .eyebrow {
  margin-bottom: 14px;
}

.legal-container h2 {
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 24px;
  font-weight: 800;
}

.legal-intro {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 50px;
}

.legal-content {
  display: flex;
  flex-direction: column;
}

.legal-block {
  padding: 28px 0;
  border-top: 1px solid #e5e5e5;
}

.legal-block:first-child {
  border-top: none;
  padding-top: 0;
}

.legal-block h3 {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 10px;
  color: #17202a;
  font-weight: 800;
}

.legal-block p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin: 0;
  max-width: 820px;
}


/* =========================================
   LEGAL POPUP MODALS
========================================= */

.legal-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;

  background: rgba(0, 0, 0, 0.65);

  padding: 30px 20px;

  overflow-y: auto;

  align-items: center;
  justify-content: center;
}

.legal-modal.active {
  display: flex;
}

.legal-modal-box {
  position: relative;

  width: 100%;
  max-width: 850px;
  max-height: 85vh;

  overflow-y: auto;

  background: #ffffff;

  border-radius: 14px;

  padding: 50px;

  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}

.legal-modal-box h2 {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 18px;
  font-weight: 800;
}

.legal-modal-box > p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

.legal-modal-content {
  border-top: 1px solid #e5e5e5;
}

.legal-modal-content h3 {
  font-size: 19px;
  margin: 28px 0 8px;
  color: #17202a;
  font-weight: 800;
}

.legal-modal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.legal-close {
  position: absolute;

  top: 18px;
  right: 20px;

  width: 40px;
  height: 40px;

  border: none;
  background: #f2f3f4;

  border-radius: 50%;

  font-size: 28px;
  line-height: 1;

  cursor: pointer;
  color: #17202a;
}

.legal-close:hover {
  background: #e5e7e9;
}


/* =========================================
   SEARCH RESULTS
========================================= */

#searchResults {
  margin-top: 25px;
  max-height: 380px;
  overflow-y: auto;
}

.search-results-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-bottom: 12px;
  margin-bottom: 5px;

  border-bottom: 1px solid #e5e7eb;
}

.search-results-heading strong {
  font-size: 16px;
  color: #111827;
}

.search-results-heading span {
  font-size: 12px;
  color: #64748b;
}

.search-result-item {
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

.search-result-category {
  display: block;

  color: #2563eb;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;

  margin-bottom: 6px;
}

.search-result-item h3 {
  font-size: 17px;
  line-height: 1.4;
  color: #111827;
  margin-bottom: 8px;
  font-weight: 800;
}

.search-result-item a {
  color: #2563eb;
  font-size: 13px;
  font-weight: 700;
}

.search-result-item a:hover {
  text-decoration: underline;
}

.search-message {
  padding: 25px 0;
  text-align: center;
}

.search-message strong {
  display: block;
  font-size: 18px;
  color: #111827;
  margin-bottom: 8px;
}

.search-message p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 8px;
}

.search-message p span {
  color: #111827;
  font-weight: 700;
}

.search-message small {
  color: #94a3b8;
  font-size: 12px;
}

#searchResults::-webkit-scrollbar {
  width: 5px;
}

#searchResults::-webkit-scrollbar-track {
  background: #f1f5f9;
}

#searchResults::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

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

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

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .hero-grid,
  .category-layout,
  .about-content,
  .contact-container,
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero {
    padding: 65px 0;
  }

  .hero h1 {
    letter-spacing: -2.5px;
  }

  .article-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    grid-template-columns: 1fr 1fr;
  }

  .trust-items > div:nth-child(2) {
    border-right: none;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter form {
    margin-top: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .travel-banner {
    min-height: 420px;
  }

  .about-section,
  .contact-section {
    padding: 70px 6%;
  }

  .about-section h2,
  .contact-info h2 {
    font-size: 36px;
  }

  .contact-form {
    padding: 28px;
  }

  .why-boladfy-grid {
    grid-template-columns: 1fr;
  }

  .why-boladfy-heading h2 {
    font-size: 34px;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 600px) {

  .eyebrow,
  .section-label,
  .about-label {
    font-size: 14px;
    letter-spacing: 0.12em;
  }

  .services-section {
    padding: 70px 6%;
  }

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

  .services-heading h2 {
    font-size: 36px;
  }

  .service-card {
    padding: 30px 25px;
  }

  .newsletter {
    padding: 65px 6%;
  }

  .newsletter-grid {
    gap: 35px;
  }

  .newsletter h2 {
    font-size: 32px;
  }

  .newsletter form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter input {
    width: 100%;
  }

  .travel-banner {
    padding: 30px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
  }

  .search-container {
    width: 94%;
    padding: 28px 22px;
  }

  #searchResults {
    max-height: 330px;
  }

  .search-result-item h3 {
    font-size: 16px;
  }

  .article-reader {
    padding: 60px 20px 70px;
  }

  .article-reader h1 {
    font-size: 36px;
    letter-spacing: -0.8px;
  }

  .article-reader-content {
    font-size: 17px;
    line-height: 1.75;
  }

  .article-reader-content h2 {
    font-size: 25px;
    margin-top: 40px;
  }

  .affiliate-disclosure {
    padding: 60px 20px;
  }

  .affiliate-disclosure h2 {
    font-size: 32px;
  }

  .affiliate-disclosure p {
    font-size: 15px;
  }

  .legal-section {
    padding: 65px 20px;
  }

  .legal-container h2 {
    font-size: 34px;
  }

  .legal-intro {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 35px;
  }

  .legal-block {
    padding: 23px 0;
  }

  .legal-block h3 {
    font-size: 18px;
  }

  .legal-block p {
    font-size: 15px;
    line-height: 1.75;
  }

  .legal-modal {
    padding: 15px;
    align-items: flex-start;
  }

  .legal-modal-box {
    margin-top: 20px;
    padding: 35px 25px;
    max-height: 90vh;
    border-radius: 12px;
  }

  .legal-modal-box h2 {
    font-size: 30px;
    padding-right: 35px;
  }

  .legal-modal-box > p {
    font-size: 15px;
  }

  .legal-modal-content h3 {
    font-size: 18px;
  }

  .legal-modal-content p {
    font-size: 14px;
  }

  .why-boladfy {
    padding: 65px 20px;
  }

  .why-boladfy-heading h2 {
    font-size: 30px;
  }

  .why-boladfy-heading p {
    font-size: 16px;
  }

  .why-boladfy-card {
    padding: 26px;
  }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 500px) {

  .section {
    padding: 60px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .trust-items > div {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .search-container {
    padding: 30px 25px;
  }

  .search-container h2 {
    font-size: 28px;
  }

}
/* =========================================================
   BOLADFY — CLEAN FINAL TYPOGRAPHY
========================================================= */


/* =========================================================
   GLOBAL FONT
========================================================= */

html,
body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

body {
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}


/* =========================================================
   SECTION LABELS
   LATEST
   BUSINESS
   TECHNOLOGY
   REVIEWS & COMPARISONS
   OUR APPROACH
   TRAVEL
   PRACTICAL GUIDES
   WHY BOLADFY
========================================================= */

.eyebrow,
.section-label,
.about-label {
  display: inline-block;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;

  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;

  letter-spacing: 1.8px;
  text-transform: uppercase;

  margin-bottom: 12px;
}


/* =========================================================
   MAIN SECTION HEADINGS
========================================================= */

.section-heading h2,
.category-intro h2,
.process-header h2,
.why-boladfy-heading h2,
.services-heading h2,
.about-section h2,
.contact-info h2,
.travel-banner h2,
#guides h2,
.newsletter h2 {

  font-family: "Segoe UI", Arial, Helvetica, sans-serif;

  font-size: 38px;
  line-height: 1.18;

  font-weight: 700;
  letter-spacing: -0.8px;

  margin-top: 0;
}


/* =========================================================
   SECTION DESCRIPTION
========================================================= */

.category-intro p,
.process-header p,
.why-boladfy-heading p,
.services-heading p,
.contact-info > p,
.newsletter p {

  font-family: "Segoe UI", Arial, Helvetica, sans-serif;

  font-size: 17px;
  line-height: 1.7;
  font-weight: 400;
}


/* =========================================================
   FEATURED STORY
========================================================= */

.featured-story h2 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;

  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.6px;
}

.story-category {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}


/* =========================================================
   HERO
========================================================= */

.hero h1 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;

  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.02;
}

.hero-content p {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;

  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}


/* =========================================================
   ARTICLE / CARD HEADINGS
========================================================= */

.article-body h3,
.review-card h3,
.service-card h3,
.guide-list strong {

  font-family: "Segoe UI", Arial, Helvetica, sans-serif;

  font-size: 20px;
  line-height: 1.3;

  font-weight: 700;
  letter-spacing: -0.2px;
}


/* =========================================================
   ARTICLE / CARD TEXT
========================================================= */

.article-body p,
.review-card p,
.service-card p {

  font-size: 15px;
  line-height: 1.65;
  font-weight: 400;
}


/* =========================================================
   NAVIGATION
========================================================= */

.desktop-nav {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
}


/* =========================================================
   BUTTONS
========================================================= */

button,
.btn {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  font-weight: 700;
}


/* =========================================================
   SEARCH
========================================================= */

.search-container h2 {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;

  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.6px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section h2 span {
  font-weight: inherit;
}


/* =========================================================
   FOOTER
========================================================= */

footer,
footer p,
footer a {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}


/* =========================================================
   LEGAL
========================================================= */

.legal-modal-box h2,
.legal-container h2,
.affiliate-disclosure h2 {

  font-family: "Segoe UI", Arial, Helvetica, sans-serif;

  font-weight: 700;
  letter-spacing: -0.5px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  body {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Section labels */

  .eyebrow,
  .section-label,
  .about-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }


  /* Section headings */

  .section-heading h2,
  .category-intro h2,
  .process-header h2,
  .why-boladfy-heading h2,
  .services-heading h2,
  .about-section h2,
  .contact-info h2,
  .travel-banner h2,
  #guides h2,
  .newsletter h2 {

    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }


  /* Featured story */

  .featured-story h2 {
    font-size: 28px;
    line-height: 1.2;
  }


  /* Cards */

  .article-body h3,
  .review-card h3,
  .service-card h3,
  .guide-list strong {
    font-size: 19px;
  }
}