:root {
  --ink: #111111;
  --muted: #6f6f6f;
  --line: #e9e9e9;
  --soft: #f7f7f7;
  --white: #ffffff;
  --shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  --radius: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.75;
  overflow-x: hidden;
}

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

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

.section-space {
  padding: 76px 0;
}

.section-title {
  margin: 0 0 28px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #8c8c8c;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #f1f1f1;
  background: #fff;
  color: #737373;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.navbar {
  min-height: 84px;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.92;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.06em;
}

.brand-mark small {
  margin-left: 38px;
  margin-top: 5px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 31px 12px !important;
  color: #5c5c5c;
  font-size: 14px;
  font-weight: 400;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 24px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

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

.nav-actions a {
  color: #2a2a2a;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.nav-actions a:hover {
  opacity: 0.55;
}

.hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.38)),
    url("https://images.unsplash.com/photo-1517336714731-489689fd1ca8?auto=format&fit=crop&w=1800&q=88")
      center 58% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 16%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 92%);
  margin-inline: auto;
  text-align: center;
  color: #fff;
}

.hero h1 {
  max-width: 730px;
  margin: 0 auto 14px;
  font-size: clamp(2.05rem, 4.3vw, 3.65rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.04em;
}

.hero p {
  margin-bottom: 24px;
  font-size: 12px;
  font-style: italic;
  font-weight: 600;
}

.btn-black {
  display: inline-flex;
  min-width: 122px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-black:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #111;
}

.btn-outline-minimal {
  display: inline-flex;
  min-width: 108px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid #777;
  background: transparent;
  color: #333;
  font-size: 12px;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-outline-minimal:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

.services-section {
  padding: 66px 0 40px;
}

.service-card {
  height: 100%;
  padding: 20px 20px 24px;
  background: #f6f6f6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card .image-wrap {
  overflow: hidden;
  aspect-ratio: 1.55 / 1;
  background: #eee;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card h3 {
  margin: 19px 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.service-card p {
  min-height: 55px;
  margin-bottom: 12px;
  color: #6f6f6f;
  font-size: 10px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
}

.text-link i {
  font-size: 8px;
  transition: transform 0.2s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.trust-row {
  padding: 42px 0 60px;
}

.trust-item {
  text-align: center;
}

.trust-icon {
  width: 34px;
  height: 34px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 14px;
}

.trust-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: 600;
}

.trust-item span {
  display: block;
  color: #777;
  font-size: 12px;
}

.feature-showcase {
  padding: 10px 0 70px;
}

.feature-row {
  min-height: 350px;
  margin: 0;
}

.feature-media,
.feature-copy {
  min-height: 350px;
}

.feature-media {
  overflow: hidden;
  padding: 0;
  background: #efefef;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  align-items: center;
  padding: 52px 64px;
}

.feature-copy-inner {
  max-width: 430px;
}

.feature-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.feature-copy p {
  color: #777;
  font-size: 10px;
  line-height: 1.9;
}

.alt-section .feature-copy {
  justify-content: flex-start;
}

.cta-slider {
  position: relative;
  overflow: hidden;
}

.cta-slide {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-position: center;
  background-size: cover;
}

.cta-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.cta-slide-content {
  position: relative;
  z-index: 2;
  width: min(760px, 90%);
}

.cta-slide h2 {
  max-width: 720px;
  margin: 0 auto 14px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.cta-slide p {
  font-size: 10px;
  font-style: italic;
}

.cta-slider .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #111;
  opacity: 0.35;
}

.cta-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.cta-slider .swiper-button-next,
.cta-slider .swiper-button-prev {
  width: 30px;
  height: 30px;
  color: #111;
  transform: scale(0.45);
}

.all-services {
  padding: 72px 0 78px;
  text-align: center;
}

.all-services h2 {
  max-width: 750px;
  margin: 0 auto 58px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.all-services p {
  max-width: 510px;
  margin: 0 auto 22px;
  color: #777;
  font-size: 10px;
}

.blogs {
  padding: 54px 0 74px;
}

.blog-card {
  height: 100%;
  padding: 26px 25px 30px;
  background: #f5f5f5;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-card h3 {
  margin: 0 0 7px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.blog-card .date {
  margin-bottom: 12px;
  color: #969696;
  font-size: 8px;
  text-transform: uppercase;
}

.blog-card p {
  margin: 0;
  color: #666;
  font-size: 10px;
  line-height: 1.9;
}

.view-all-wrap {
  padding-top: 34px;
  text-align: center;
}

.footer {
  padding: 58px 0 38px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer h5 {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 600;
}

.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li {
  margin-bottom: 9px;
}

.footer a {
  color: #686868;
  font-size: 14px;
}

.footer a:hover {
  color: #111;
}

.socials {
  display: flex;
  gap: 13px;
  align-items: center;
}

.socials a {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  color: #111;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
  color: #9a9a9a;
  font-size: 14px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  color: #fff;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 80px;
  z-index: 1039;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: 70px;
  }

  .navbar-collapse {
    margin-top: 12px;
    padding: 12px 0 18px;
    border-top: 1px solid #eee;
  }

  .navbar-nav .nav-link {
    padding: 10px 0 !important;
  }

  .navbar-nav .nav-link::after {
    left: 0;
    right: auto;
    bottom: 7px;
    width: 34px;
  }

  .nav-actions {
    margin-top: 12px;
  }

  .hero {
    min-height: 430px;
  }

  .feature-copy {
    min-height: auto;
    padding: 44px 28px;
  }

  .feature-media,
  .feature-media img {
    min-height: 320px;
  }

  .cta-slide {
    min-height: 420px;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 58px 0;
  }

  .hero {
    min-height: 390px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .trust-item {
    padding: 15px 0;
  }

  .feature-row {
    min-height: auto;
  }

  .feature-media {
    order: 1;
  }

  .feature-copy {
    order: 2;
  }

  .feature-row.flex-md-row-reverse .feature-media {
    order: 1;
  }

  .feature-row.flex-md-row-reverse .feature-copy {
    order: 2;
  }

  .cta-slide h2 {
    font-size: 2.6rem;
  }

  .all-services h2 {
    margin-bottom: 38px;
  }
}

/* =========================================================
   REAL CAFE i LOGO
   ========================================================= */
.site-logo-img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.footer-logo-img {
  width: 140px;
  height: auto;
  object-fit: contain;
}

/* =========================================================
   ABOUT US PAGE
   ========================================================= */
.about-page-main {
  background: #fff;
}

.about-story-section {
  padding: 125px 0 115px;
}

.about-story-wrap {
  position: relative;
}

.about-story-content {
  max-width: 735px;
}

.about-story-content h1 {
  margin: 0 0 27px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.about-story-content p {
  margin-bottom: 25px;
  color: #757575;
  font-size: 13px;
  line-height: 1.95;
}

.about-story-content .focus-list {
  margin: -5px 0 25px;
  padding: 0;
  list-style: none;
  color: #656565;
  font-size: 13px;
  line-height: 1.85;
}

.about-story-content .focus-list li::before {
  content: "✓";
  margin-right: 7px;
  color: #111;
  font-weight: 700;
}

.story-side-image {
  position: absolute;
  right: 0;
  top: 330px;
  width: 300px;
  height: 430px;
  overflow: hidden;
  background: #f1f1f1;
}

.story-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-connect {
  margin-top: 15px;
}

.testimonials-section {
  padding: 65px 0 45px;
  background: #f4f4f4;
}

.testimonials-section .section-title {
  margin-bottom: 34px;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 400;
}

.testimonial-card {
  height: 100%;
  padding: 25px 25px 35px;
  background: #ececec;
  text-align: center;
}

.testimonial-avatar {
  width: 235px;
  height: 235px;
  margin: 0 auto 20px;
  overflow: hidden;
  border-radius: 50%;
  background: #ddd;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
}

.testimonial-card p {
  margin: 0;
  color: #737373;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.85;
}

.about-footer {
  border-top: 0;
}

@media (max-width: 1199.98px) {
  .about-story-content {
    max-width: 650px;
  }

  .story-side-image {
    width: 255px;
    height: 390px;
  }

  .testimonial-avatar {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 991.98px) {
  .about-story-section {
    padding: 80px 0;
  }

  .about-story-content {
    max-width: none;
  }

  .story-side-image {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 430px;
    margin-top: 35px;
  }

  .story-side-image img {
    object-position: center 30%;
  }

  .testimonial-avatar {
    width: 210px;
    height: 210px;
  }
}

@media (max-width: 767.98px) {
  .site-logo-img {
    width: 108px;
  }

  .footer-logo-img {
    width: 120px;
  }

  .about-story-section {
    padding: 58px 0 65px;
  }

  .about-story-content p,
  .about-story-content .focus-list {
    font-size: 12px;
  }

  .story-side-image {
    height: 350px;
  }

  .testimonials-section {
    padding: 50px 0 35px;
  }

  .testimonial-avatar {
    width: 190px;
    height: 190px;
  }
}

/* =========================================================
   INNER PAGES - SHARED
   ========================================================= */
.inner-page {
  background: #fff;
}

.inner-page .navbar {
  min-height: 78px;
}

.page-heading {
  margin: 0 0 45px;
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

/* =========================================================
   SERVICES / FAQ REFERENCE LAYOUT
   ========================================================= */
.expertise-section {
  padding: 32px 0 62px;
}

.expertise-list {
  max-width: 1120px;
  margin-inline: auto;
}

.expertise-row {
  min-height: 390px;
  margin: 0;
}

.expertise-image,
.expertise-copy {
  min-height: 390px;
}

.expertise-image {
  padding: 0;
  overflow: hidden;
  background: #eee;
}

.expertise-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.expertise-copy {
  display: flex;
  align-items: center;
  padding: 52px 60px;
}

.expertise-copy-inner {
  max-width: 430px;
}

.expertise-copy h2 {
  margin: 0 0 17px;
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  font-weight: 600;
  line-height: 1.23;
  letter-spacing: -0.035em;
}

.expertise-copy p {
  max-width: 470px;
  margin-bottom: 24px;
  color: #747474;
  font-size: 12px;
  line-height: 1.9;
}

.dark-contact-block {
  padding: 70px 0;
  background: #111;
  color: #fff;
}

.dark-contact-inner {
  max-width: 700px;
  margin-inline: auto;
}

.dark-contact-block h2 {
  margin: 0 0 25px;
  font-size: 2rem;
  font-weight: 400;
}

.minimal-form .form-control {
  min-height: 45px;
  border: 1px solid #636363;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 11px;
  box-shadow: none;
}

.dark-contact-block .form-control {
  color: #fff;
}

.dark-contact-block .form-control::placeholder {
  color: #a8a8a8;
}

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

.minimal-form .btn-form {
  min-width: 105px;
  min-height: 43px;
  border: 1px solid #fff;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-size: 10px;
}

.minimal-form .btn-form:hover {
  background: transparent;
  color: #fff;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-hero-reference {
  width: 100%;
  min-height: 470px;
  background: #1a1a1a url("assets/contact-hero.jpg") center / cover no-repeat;
}

.contact-form-section {
  padding: 58px 0 66px;
  background: #f3f3f3;
}

.contact-form-wrap {
  max-width: 620px;
  margin-inline: auto;
}

.contact-form-section .form-control {
  border-color: #979797;
  background: transparent;
  color: #222;
}

.contact-form-section .form-control::placeholder {
  color: #707070;
}

.contact-form-section .btn-form {
  border-color: #111;
  background: #111;
  color: #fff;
}

.contact-form-section .btn-form:hover {
  background: transparent;
  color: #111;
}

/* =========================================================
   BUY / SELL PAGE
   ========================================================= */
.buy-sell-section {
  padding: 40px 0 95px;
}

.buy-sell-grid {
  max-width: 1120px;
  margin-inline: auto;
}

.buy-sell-image {
  width: 100%;
  min-height: 405px;
  object-fit: cover;
}

.buy-sell-copy {
  max-width: 440px;
  padding-left: 25px;
}

.buy-sell-copy .eyebrow {
  margin-bottom: 4px;
}

.buy-sell-copy h1 {
  max-width: 380px;
  margin: 0 0 17px;
  font-size: clamp(2.3rem, 4vw, 3.45rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.buy-sell-copy h4 {
  margin: 18px 0 8px;
  font-size: 12px;
  font-weight: 600;
}

.choice-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  color: #666;
  font-size: 12px;
}

.choice-line input {
  accent-color: #111;
}

.device-options {
  display: flex;
  gap: 22px;
  margin: 8px 0 28px;
}

.device-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 55px;
  min-height: 55px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 38px;
  cursor: pointer;
  opacity: .85;
}

.device-option.active {
  opacity: 1;
}

.device-option:hover {
  opacity: .55;
}

.buy-sell-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 30px;
}

.buy-sell-actions .btn-outline-minimal {
  min-width: 112px;
  min-height: 45px;
  border-radius: 5px;
  font-size: 11px;
}

.buy-sell-copy .content-text {
  color: #777;
  font-size: 12px;
  line-height: 1.95;
}

.buy-sell-copy .content-text p {
  margin-bottom: 17px;
}

.buy-sell-copy .why-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.buy-sell-copy .why-list li {
  margin-bottom: 16px;
}

.share-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 11px;
}

/* =========================================================
   FOOTER CONSISTENCY
   ========================================================= */
.footer-inner-page {
  padding-top: 48px;
}

.footer-inner-page .footer-bottom {
  margin-top: 72px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  .expertise-row,
  .expertise-image,
  .expertise-copy,
  .expertise-image img {
    min-height: 330px;
  }

  .expertise-copy {
    padding: 38px 32px;
  }

  .contact-hero-reference {
    min-height: 380px;
  }

  .buy-sell-copy {
    max-width: none;
    padding: 35px 0 0;
  }
}

@media (max-width: 767.98px) {
  .page-heading {
    margin-bottom: 30px;
  }

  .expertise-section {
    padding-top: 28px;
  }

  .expertise-row {
    min-height: auto;
    margin-bottom: 28px;
  }

  .expertise-image,
  .expertise-image img {
    min-height: 270px;
  }

  .expertise-copy {
    min-height: auto;
    padding: 30px 22px 42px;
  }

  .expertise-row.flex-md-row-reverse .expertise-image {
    order: 1;
  }

  .expertise-row.flex-md-row-reverse .expertise-copy {
    order: 2;
  }

  .dark-contact-block {
    padding: 52px 0;
  }

  .contact-hero-reference {
    min-height: 300px;
    background-position: center;
  }

  .contact-form-section {
    padding: 45px 0 55px;
  }

  .buy-sell-section {
    padding: 30px 0 65px;
  }

  .buy-sell-image {
    min-height: 280px;
  }

  .buy-sell-copy h1 {
    font-size: 2.4rem;
  }
}



/* =========================================================
   LINK / ACCESSIBILITY FIXES
   ========================================================= */
.footer a.active {
  color: #111;
  font-weight: 600;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #111;
  outline-offset: 3px;
}
