:root {
  --rex-primary: #ED1C24;
  --rex-primary-light: #fe353d;
  --rex-primary-gradient: linear-gradient(135deg, #ED1C24, #fe353d);
  --rex-primary-glow: #ED1C2466;
  --rex-dark: #000000;
  --rex-muted: #444444;
  --rex-soft-gray: #f6f7fb;
  --rex-soft-contrast: #fafbff;
  --rex-border: rgba(17, 24, 39, 0.08);
  --rex-white: #ffffff;
  --rex-radius-md: 1rem; /* 16px */
  --rex-radius-lg: 1.25rem;
  --rex-header-height: 84px;
  --rex-shadow-soft: 0 10px 40px rgba(17, 24, 39, 0.08);
  --rex-shadow-lift: 0 20px 60px rgba(237, 56, 51, 0.18);
  --rex-shadow-card: 0 16px 48px rgba(15, 23, 42, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--rex-dark);
  background: linear-gradient(180deg, #fdfefe 0%, #f4f6fb 100%);
  line-height: 1.65;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--rex-dark);
  letter-spacing: -0.02em;
}

p {
  color: var(--rex-muted);
}

.text-dark-900 {
  color: var(--rex-dark) !important;
}

.btn {
  font-weight: 600;
  
  padding: 0.75rem 1.75rem;
  transition: all 0.35s ease;
  border: none;
  position: relative;
  overflow: hidden;
  align-content: center;
}

.btn:focus-visible {
  outline: 2px solid #ED1C2466;
  outline-offset: 2px;
}

.btn-gradient {
  background: var(--rex-primary-gradient);
  color: var(--rex-white);
  box-shadow: 0 12px 30px rgba(237, 56, 51, 0.28);
}

.btn-gradient:hover {
  box-shadow: 0 18px 40px rgba(237, 56, 51, 0.32);
  transform: translateY(-2px);
  color: var(--rex-white);
}

.btn-soft-gradient {
  background: var(--rex-primary-gradient);
  color: var(--rex-white);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(237, 56, 51, 0.18);
  padding: 0.5rem 1.25rem;
}

.btn-soft-gradient:hover {
  color: var(--rex-white);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(237, 56, 51, 0.28);
}

.btn-ghost {
  background: rgba(237, 56, 51, 0.08);
  color: var(--rex-primary);
  border: 1px solid rgba(237, 56, 51, 0.32);
}

.btn-ghost:hover {
  background: rgba(237, 56, 51, 0.16);
  color: var(--rex-primary);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  background: rgba(30, 30, 30, 0.04);
  color: var(--rex-dark);
  border: 1px solid rgba(30, 30, 30, 0.2);
}

.btn-ghost-dark:hover {
  background: rgba(30, 30, 30, 0.08);
  color: var(--rex-dark);
  transform: translateY(-2px);
}

/* Header */
.main-header {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  z-index: 20;
}

.navbar {
  padding-left: 0;
  padding-right: 0;
}

.navbar-brand {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: rgba(30, 30, 30, 0.72);
  padding: 0.6rem 0;
  position: relative;
  transition: color 0.3s ease;
}

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

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.4rem;
  width: 0;
  height: 2px;
  background: var(--rex-primary-gradient);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 18px;
}

.navbar-toggler {
  border-radius: 50%;
  width: 46px;
  height: 46px;
  background: rgba(237, 56, 51, 0.12);
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 22px;
  height: 2px;
  background: transparent;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--rex-primary);
  transition: transform 0.3s ease;
}

.navbar-toggler-icon::before {
  transform: translateY(-6px);
}

.navbar-toggler-icon::after {
  transform: translateY(6px);
}

/* Intro Hero Slider */
.intro-hero {
  position: relative;
  margin-top: calc(-1 * var(--rex-header-height));
  padding-top: var(--rex-header-height);
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.intro-hero .swiper {
  height: 100%;
}

.intro-hero__slide {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.intro-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(8, 12, 24, 0.74), rgba(8, 12, 24, 0.45));
  mix-blend-mode: multiply;
}

.intro-hero__inner {
  position: relative;
  max-width: 620px;
  color: #ffffff;
  padding: clamp(2.5rem, 7vw, 3.75rem) 0;
}

.intro-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(237, 56, 51, 0.18);
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.intro-hero__title {
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.intro-hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 2.6rem;
  max-width: 540px;
}

.intro-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.intro-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.3rem;
  
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  border: 2px solid transparent;
}

.intro-hero__btn--primary {
  background: var(--rex-primary-gradient);
  color: #ffffff;
  box-shadow: 0 26px 60px rgba(237, 56, 51, 0.32);
}

.intro-hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 32px 70px rgba(237, 56, 51, 0.4);
  color: #ffffff;
}

.intro-hero__btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.intro-hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  transform: translateY(-2px);
}

.intro-hero__pagination {
  position: absolute;
  bottom: 2.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 3;
}

.intro-hero__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
  transition: width 0.3s ease, background 0.3s ease;
}

.intro-hero__pagination .swiper-pagination-bullet-active {
  width: 38px;
  background: var(--rex-primary-gradient);
}

.intro-hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.2rem;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 3;
}

.intro-hero__nav:hover {
  background: rgba(255, 255, 255, 0.32);
  transform: translateY(-50%) scale(1.05);
}

.intro-hero__nav--prev {
  left: 1%;
}

.intro-hero__nav--next {
  right: 1%
}

/* Hero Banner */
.hero-banner {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: clamp(6rem, 6vw, 9rem) 0;
  background: linear-gradient(120deg, #ffffff 0%, #fef5f5 32%, #fde9e9 100%);
  overflow: hidden;
}

.hero-banner__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-banner__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.hero-banner__glow--top {
  top: -20%;
  left: -12%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(237, 56, 51, 0.48), rgba(237, 56, 51, 0));
}

.hero-banner__glow--bottom {
  bottom: -28%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 143, 138, 0.42), rgba(255, 143, 138, 0));
}

.hero-banner__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  background: linear-gradient(135deg, rgba(237, 56, 51, 0.4), rgba(255, 122, 112, 0.2));
}

.hero-banner__orb--one {
  top: 20%;
  right: 32%;
  width: 90px;
  height: 90px;
}

.hero-banner__orb--two {
  bottom: 18%;
  left: 6%;
  width: 120px;
  height: 120px;
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero-banner__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(30, 30, 30, 0.58);
  margin-bottom: 1.75rem;
}

.hero-banner__title {
  font-size: clamp(2.75rem, 3.6vw, 3.5rem);
  line-height: 1.08;
  color: #1e1e1e;
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.hero-banner__subtitle {
  font-size: 1.1rem;
  color: #555555;
  max-width: 33rem;
  margin-bottom: 2.5rem;
}

.hero-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.hero-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.1rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
  border: 2px solid transparent;
}
.hero-banner__btn--primary {
    color: #ffffff;
    box-shadow: 0 14px 34px rgba(237, 56, 51, 0.28);
    background: var(--rex-primary-gradient);
}
.hero-banner__btn--primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 44px rgba(237, 56, 51, 0.32);
}

.hero-banner__btn--secondary {
  background: rgba(255, 255, 255, 0.4);
  color: #ED1C24;
  border-color: #ED1C24;
}

.hero-banner__btn--secondary:hover {
  background: linear-gradient(90deg, #ED1C24, #ff5a4d);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(237, 56, 51, 0.2);
  transform: translateY(-2px);
}

.hero-banner__visual {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
}

.hero-banner__media {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.18);
}

.hero-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 555;
}

.hero-banner__media-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(237, 56, 51, 0.22), rgba(0, 0, 0, 0.22));
  mix-blend-mode: multiply;
}

.hero-banner__float {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  background: radial-gradient(circle, rgba(255, 184, 178, 0.42), rgba(255, 184, 178, 0));
}

.hero-banner__float--one {
  top: -8%;
  right: -6%;
  width: 180px;
  height: 180px;
}

.hero-banner__float--two {
  bottom: -10%;
  left: -4%;
  width: 140px;
  height: 140px;
}

/* Value Proposition */
.value-strip {
  background: linear-gradient(180deg, #fdfefe 0%, #f5f7fb 100%);
  padding: clamp(5.5rem, 6vw, 7rem) 0;
}

.floating-card {
  border-radius: var(--rex-radius-md);
  border: 1px solid rgba(17, 24, 39, 0.06);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--rex-shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.floating-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(20, 30, 50, 0.12);
}

.glow-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 56, 51, 0.16), rgba(237, 56, 51, 0.04));
  display: grid;
  place-items: center;
  color: var(--rex-primary);
  font-size: 1.8rem;
  margin: 0 auto;
  box-shadow: 0 12px 30px rgba(237, 56, 51, 0.18);
}

.value-desc {
  color: rgba(30, 30, 30, 0.65);
  font-size: 0.95rem;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(243, 245, 252, 0.9));
  padding: clamp(6rem, 6vw, 8.5rem) 0;
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(237, 56, 51, 0.12), transparent 55%);
  pointer-events: none;
}

.about-badge {
  display: inline-block;
  letter-spacing: 0.28em;
  color: rgba(30, 30, 30, 0.55);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(237, 56, 51, 0.08);
}

.about-copy {
  color: rgba(30, 30, 30, 0.68);
  font-size: 1rem;
}

.about-media {
  position: relative;
}

.about-glow {
  position: absolute;
  inset: -12% -14% -12% 20%;
  background: radial-gradient(circle, rgba(237, 56, 51, 0.18), transparent 60%);
  filter: blur(18px);
  z-index: 0;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--rex-radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.18);
  z-index: 1;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Map Section */
.map-section {
  background: #fafafa;
  padding: clamp(6rem, 6vw, 8rem) 0;
}

.map-placeholder {
  background: linear-gradient(135deg, #f1f3f9 0%, #ffffff 60%);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12);
  min-height: 450px;
}

.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 1rem;
  border: 1px dashed rgba(30, 30, 30, 0.08);
}

.map-pin {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--rex-primary-gradient);
  box-shadow: 0 0 0 12px rgba(237, 56, 51, 0.18);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff;
}

.pin-one {
  top: 28%;
  left: 36%;
}

.pin-two {
  top: 52%;
  right: 28%;
}

.pin-three {
  top: 68%;
  left: 58%;
}

.map-caption {
  position: absolute;
  bottom: 18px;
  right: 18px;
  background: rgba(30, 30, 30, 0.78);
  color: var(--rex-white);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Projects Section */
.projects-section {
  background: #fdfdfd;
  padding: clamp(6.5rem, 6vw, 8.5rem) 0;
}

.glow-card {
  border-radius: var(--rex-radius-lg);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.08);
  /* box-shadow: 0 25px 60px rgba(15, 23, 42, 0.12); */
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.glow-card:hover {
  transform: translateY(-12px);
  border-color: rgba(237, 56, 51, 0.4);
  /* box-shadow: 0 32px 80px rgba(237, 56, 51, 0.28); */
}

.project-image {
  background-size: cover;
  background-position: center;
  height: 230px;
  position: relative;
  overflow: hidden;
}

.project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.35));
  opacity: 0.8;
}

.project-body h5 {
  color: var(--rex-dark);
}

.cta-link {
  font-weight: 600;
  color: var(--rex-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cta-link:hover {
  color: var(--rex-primary-light);
}

.swiper-pagination-bullet {
  background: rgba(30, 30, 30, 0.25);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--rex-primary) !important;
  width: 14px;
  border-radius: 999px;
}

/* Projects Listing Page */
.projects-page-heading {
  background: var(--rex-white);
  padding: clamp(4.5rem, 4vw, 6rem) 0;
  border-bottom: 1px solid #eeeeee;
}

.projects-page-heading__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.projects-page-heading__title {
  font-size: clamp(2.4rem, 3vw, 2.9rem);
  margin-bottom: 1.2rem;
  color: var(--rex-dark);
}

.projects-page-heading__subtitle {
  font-size: 1.05rem;
  color: rgba(30, 30, 30, 0.62);
  margin-bottom: 2rem;
}

.projects-page-heading__trail {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #888888;
}

.projects-page-heading__trail a {
  color: #888888;
  text-decoration: none;
}

.projects-page-heading__trail a:hover {
  color: var(--rex-primary);
}

.projects-page-heading__separator {
  color: rgba(30, 30, 30, 0.2);
  font-weight: 500;
}

.projects-page-heading__current {
  color: var(--rex-primary);
  font-weight: 600;
}

.projects-listing {
  background: #fafafa;
  padding: clamp(5.5rem, 6vw, 7rem) 0;
}

.projects-listing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.8rem, 5vw, 2.5rem);
}

.projects-listing__card {
  background: #ffffff;
  border-radius: var(--rex-radius-md);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.projects-listing__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(237, 56, 51, 0.18);
  border-color: rgba(237, 56, 51, 0.28);
}

.projects-listing__media {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
  background-size: cover;
  background-position: center;
}

.projects-listing__content {
  padding: 2.2rem 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.projects-listing__badge {
  align-self: flex-start;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: rgba(237, 56, 51, 0.12);
  color: var(--rex-primary);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.projects-listing__title {
  font-size: 1.3rem;
  color: var(--rex-dark);
  margin: 0;
}

.projects-listing__description {
  font-size: 0.95rem;
  color: #555555;
  margin: 0;
}

.projects-listing__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  background: var(--rex-primary-gradient);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(237, 56, 51, 0.22);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.projects-listing__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(237, 56, 51, 0.3);
  color: #ffffff;
}

.projects-contact {
  background: transparent;
  padding: clamp(5rem, 6vw, 7rem) 0;
  padding-top: 0;
}

.projects-contact__panel {
  background: linear-gradient(120deg, #ED1C24, #ff5a4d);
  border-radius: 32px;
  padding: clamp(4.5rem, 7vw, 6rem) clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  color: #ffffff;
  box-shadow: 0 28px 60px #ED1C2466;
}

.projects-contact__title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}

.projects-contact__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 540px;
  margin: 0 auto 2.4rem;
}

.projects-contact__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.projects-contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.projects-contact__btn--primary {
  background: #ffffff;
  color: #ED1C24;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.projects-contact__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

.projects-contact__btn--secondary {
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  background: transparent;
}

.projects-contact__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* Project Detail Page */
.detail-page-heading {
  background: var(--rex-white);
  padding: clamp(4.5rem, 7vw, 6rem) 0;
  border-bottom: 1px solid #eeeeee;
}

.detail-page-heading__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.detail-page-heading__title {
  font-size: clamp(2.6rem, 3.5vw, 3.1rem);
  margin-bottom: 1.2rem;
  color: var(--rex-dark);
}

.detail-page-heading__subtitle {
  font-size: 1.05rem;
  color: rgba(30, 30, 30, 0.62);
  margin-bottom: 2rem;
}

.detail-page-heading__trail {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #888888;
  flex-wrap: wrap;
  justify-content: center;
}

.detail-page-heading__trail a {
  color: #888888;
  text-decoration: none;
}

.detail-page-heading__trail a:hover {
  color: var(--rex-primary);
}

.detail-page-heading__separator {
  color: rgba(30, 30, 30, 0.2);
  font-weight: 500;
}

.detail-page-heading__current {
  color: var(--rex-primary);
  font-weight: 600;
}

.project-detail {
  background: var(--rex-white);
  padding: clamp(6rem, 6vw, 8rem) 0;
}

.project-detail__media {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.project-detail__hero {
  border-radius: var(--rex-radius-lg);
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.project-detail__hero img {
  width: 100%;
  height: 510px;
  display: block;
  object-fit: cover;
}

.project-detail__thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.project-detail__thumb {
  border: none;
  background: transparent;
  padding: 0;
  border-radius: var(--rex-radius-md);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, outline 0.25s ease;
  outline: 2px solid transparent;
  cursor: pointer;
}

.project-detail__thumb img {
  width: 100%;
  height: 125px;
  display: block;
  object-fit: cover;
}

.project-detail__thumb:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(237, 56, 51, 0.22);
}

.project-detail__thumb.is-active {
  outline: 2px solid rgba(237, 56, 51, 0.65);
  transform: translateY(-2px);
}

.project-detail__info-card {
  background: #ffffff;
  border-radius: var(--rex-radius-md);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.project-detail__info-title {
  font-size: 1.6rem;
  margin: 0;
  color: var(--rex-dark);
}

.project-detail__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
}

.project-detail__meta span {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(30, 30, 30, 0.55);
  margin-bottom: 0.3rem;
}

.project-detail__meta strong {
  font-size: 1.05rem;
  color: var(--rex-dark);
  font-weight: 600;
}

.project-detail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  background: var(--rex-primary-gradient);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(237, 56, 51, 0.25);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.project-detail__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(237, 56, 51, 0.32);
  color: #ffffff;
}

.project-detail__note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(30, 30, 30, 0.62);
}

.project-description {
  background: var(--rex-white);
  padding: clamp(5.5rem, 6vw, 7rem) 0;
  border-top: 1px solid rgba(17, 24, 39, 0.05);
}

.project-description__title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--rex-dark);
}

.project-description p {
  font-size: 1.02rem;
  color: rgba(30, 30, 30, 0.68);
  margin-bottom: 1.5rem;
}

.project-description__quote {
  margin: 2.5rem 0 0;
  padding: 1.2rem 1.5rem;
  font-style: italic;
  color: var(--rex-dark);
  border-left: 4px solid var(--rex-primary);
  background: rgba(237, 56, 51, 0.06);
  border-radius: 0 12px 12px 0;
}

.project-offer {
  background: transparent;
  padding: clamp(5.5rem, 8vw, 7rem) 0;
}

.project-offer__panel {
  background: linear-gradient(120deg, #ED1C24, #ff5a4d);
  border-radius: 32px;
  padding: clamp(4.5rem, 7vw, 6rem);
  text-align: center;
  color: #ffffff;
  box-shadow: 0 32px 70px rgba(237, 56, 51, 0.32);
}

.project-offer__title {
  font-size: clamp(2.2rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
}

.project-offer__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.project-offer__form {
  max-width: 940px;
  margin: 0 auto;
}

.project-offer__input {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.project-offer__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.project-offer__input:focus {
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.18);
}

.project-offer__btn {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  background: #ffffff;
  color: var(--rex-primary);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease, color 0.28s ease;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.project-offer__btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(120deg, #ED1C24, #ff5a4d);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.similar-projects {
  background: #fafafa;
  padding: clamp(6rem, 6vw, 8rem) 0;
}

.similar-projects__title {
  font-size: 2rem;
  color: var(--rex-dark);
  margin-bottom: 0.75rem;
}

.similar-projects__subtitle {
  font-size: 1rem;
  color: rgba(30, 30, 30, 0.62);
  margin: 0;
}

.info-page-heading {
  background: var(--rex-white);
  padding: clamp(4.5rem, 7vw, 6rem) 0;
  border-bottom: 1px solid #eeeeee;
}

.info-page-heading__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.info-page-heading__title {
  font-size: clamp(2.6rem, 3.5vw, 3rem);
  margin-bottom: 1.2rem;
  color: var(--rex-dark);
}

.info-page-heading__subtitle {
  font-size: 1.05rem;
  color: rgba(30, 30, 30, 0.6);
  margin-bottom: 2rem;
}

.info-page-heading__trail {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: #888888;
  flex-wrap: wrap;
  justify-content: center;
}

.info-page-heading__trail a {
  color: #888888;
  text-decoration: none;
}

.info-page-heading__trail a:hover {
  color: var(--rex-primary);
}

.info-page-heading__separator {
  color: rgba(30, 30, 30, 0.2);
  font-weight: 500;
}

.info-page-heading__current {
  color: var(--rex-primary);
  font-weight: 600;
}

.contact-info-section {
  background: var(--rex-white);
  padding: clamp(6rem, 8vw, 8.5rem) 0;
}

.contact-info__content {
  background: linear-gradient(140deg, rgba(237, 56, 51, 0.04), rgba(255, 255, 255, 0.96));
  border-radius: var(--rex-radius-lg);
  padding: clamp(2.5rem, 4vw, 3.25rem);
  box-shadow: 0 18px 48px rgba(17, 24, 39, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-info__content::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(237, 56, 51, 0.18), rgba(237, 56, 51, 0));
  filter: blur(30px);
  opacity: 0.65;
}

.contact-info__title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.contact-info__intro {
  font-size: 1rem;
  color: rgba(30, 30, 30, 0.66);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.contact-info__list {
  display: grid;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.contact-info__item {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.15rem 1.35rem;
  border-radius: var(--rex-radius-md);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 42px rgba(17, 24, 39, 0.06);
  border: 1px solid rgba(237, 56, 51, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-info__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 56px rgba(237, 56, 51, 0.12);
  border-color: rgba(237, 56, 51, 0.2);
}

.contact-info__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--rex-primary);
  background: rgba(237, 56, 51, 0.1);
  box-shadow: 0 20px 40px rgba(237, 56, 51, 0.12);
}

.contact-info__label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(30, 30, 30, 0.45);
  margin-bottom: 0.2rem;
}

.contact-info__link {
  font-weight: 600;
  color: var(--rex-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info__link:hover {
  color: var(--rex-primary);
}

.contact-info__offices {
  margin-top: 2.8rem;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.6rem;
}

.contact-info__office h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.contact-info__office p {
  margin: 0;
  color: rgba(30, 30, 30, 0.62);
}

.contact-info__social {
  margin-top: 2.4rem;
  display: flex;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.contact-info__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rex-primary);
  background: rgba(237, 56, 51, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.contact-info__social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(237, 56, 51, 0.2);
  background: var(--rex-primary-gradient);
  color: #ffffff;
}

.contact-form-card {
  background: var(--rex-white);
  border-radius: 28px;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(17, 24, 39, 0.04);
}

.contact-form-card__title {
  font-size: clamp(1.8rem, 2.6vw, 2.2rem);
  margin-bottom: 2rem;
}

.contact-form__label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(30, 30, 30, 0.55);
}

.contact-form__input,
.contact-form__textarea {
  border-radius: 14px;
  border: 1.5px solid rgba(17, 24, 39, 0.08);
  padding: 0.95rem 1.1rem;
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: rgba(237, 56, 51, 0.4);
  box-shadow: 0 0 0 5px rgba(237, 56, 51, 0.1);
  outline: none;
}

.contact-form__textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form__disclaimer {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(30, 30, 30, 0.48);
  text-align: center;
}

.contact-map-section {
  background: #fafafa;
  padding: clamp(6rem, 8vw, 8.5rem) 0;
}

.contact-map__title {
  font-size: clamp(2rem, 3vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.contact-map__subtitle {
  font-size: 1rem;
  color: rgba(30, 30, 30, 0.62);
  max-width: 640px;
  margin: 0 auto;
}

.contact-map__card {
  background: var(--rex-white);
  border-radius: 26px;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.1);
  border: 1px solid rgba(17, 24, 39, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-map__frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.14);
}

.contact-map__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-map__meta h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.contact-map__meta p {
  margin: 0;
  color: rgba(30, 30, 30, 0.6);
}

.about-intro {
  background: var(--rex-white);
  padding: clamp(6rem, 8vw, 8rem) 0;
}

.about-intro__copy p {
  font-size: 1.05rem;
  color: rgba(30, 30, 30, 0.68);
  margin: 0;
}

.about-intro__visual {
  border-radius: var(--rex-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.about-intro__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-stats {
  background: #fafafa;
  padding: clamp(6rem, 8vw, 8rem) 0;
}

.about-stats__title {
  font-size: 2rem;
  color: var(--rex-dark);
  margin: 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: clamp(1.8rem, 5vw, 2.5rem);
}

.about-stats__card {
  background: #ffffff;
  border-radius: var(--rex-radius-md);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 2.4rem 2rem;
  text-align: center;
  display: grid;
  gap: 0.6rem;
}

.about-stats__value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--rex-primary);
  letter-spacing: -0.5px;
}

.about-stats__label {
  font-size: 0.95rem;
  color: rgba(30, 30, 30, 0.62);
  margin: 0;
}

.about-mission {
  background: var(--rex-white);
  padding: clamp(6rem, 8vw, 8rem) 0;
}

.about-mission__visual {
  border-radius: var(--rex-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.about-mission__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-mission__copy h2 {
  font-size: 1.6rem;
  color: var(--rex-dark);
  margin-bottom: 1rem;
}

.about-mission__copy p {
  font-size: 1.02rem;
  color: rgba(30, 30, 30, 0.68);
  margin-bottom: 1.4rem;
}

.about-team {
  background: #fafafa;
  padding: clamp(6rem, 8vw, 8rem) 0;
}

.about-team__title {
  font-size: 2rem;
  color: var(--rex-dark);
  margin: 0;
}

.about-team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.8rem, 5vw, 2.5rem);
}

.about-team__card {
  background: #ffffff;
  border-radius: var(--rex-radius-md);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  text-align: center;
  padding: 2.2rem 1.8rem;
  display: grid;
  gap: 0.75rem;
}

.about-team__portrait {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
}

.about-team__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-team__card h3 {
  font-size: 1.2rem;
  color: var(--rex-dark);
  margin: 0;
}

.about-team__card p {
  font-size: 0.95rem;
  color: rgba(30, 30, 30, 0.62);
  margin: 0;
}

.about-team__card span {
  font-size: 0.9rem;
  color: rgba(30, 30, 30, 0.55);
}
.guide-intro {
  background: var(--rex-white);
  padding: clamp(6rem, 8vw, 8rem) 0;
}
.guide-intro__content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    display: flex
;
    gap: 2.5rem;
    flex-direction: column;
    align-items: center;
}

.guide-intro__content p {
  font-size: 1.05rem;
  color: rgba(30, 30, 30, 0.68);
  margin: 0;
}

.guide-intro__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.3rem;
  border-radius: 0.75rem;
  background: var(--rex-primary-gradient);
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(237, 56, 51, 0.22);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  justify-self: center;
}

.guide-intro__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(237, 56, 51, 0.3);
  color: #ffffff;
}

.guide-insights {
  background: #fafafa;
  padding: clamp(6rem, 8vw, 8rem) 0;
}

.guide-insights__title {
  font-size: 2rem;
  color: var(--rex-dark);
  margin: 0;
}

.guide-insights__stack {
  display: grid;
  gap: clamp(2.2rem, 6vw, 3rem);
}

.guide-insights__item {
  background: #ffffff;
  border-radius: var(--rex-radius-md);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  padding: clamp(2.2rem, 5vw, 2.8rem);
}

.guide-insights__copy h3 {
  font-size: 1.4rem;
  color: var(--rex-dark);
  margin-bottom: 1.1rem;
}
.guide-insights__copy p {
  font-size: 1rem;
  color: rgba(30, 30, 30, 0.68);
  margin-bottom: 1.2rem;
}

.guide-insights__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--rex-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.guide-insights__link:hover {
  color: var(--rex-primary-light);
}

.guide-insights__visual {
  border-radius: var(--rex-radius-md);
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.guide-insights__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.guide-faq {
  background: #fafafa;
  padding: clamp(6rem, 8vw, 8rem) 0;
}

.guide-faq__inner {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.guide-faq__title {
  font-size: 2rem;
  color: var(--rex-dark);
  text-align: center;
  margin: 0;
}

.guide-faq__accordion {
  display: grid;
  gap: 1.2rem;
}

.guide-faq__item {
  background: #ffffff;
  border-radius: var(--rex-radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.guide-faq__item[open] {
  box-shadow: 0 14px 36px rgba(237, 56, 51, 0.15);
  border-color: rgba(237, 56, 51, 0.25);
}

.guide-faq__button {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rex-dark);
  padding: 1.4rem 1.8rem;
  list-style: none;
  cursor: pointer;
  position: relative;
}

.guide-faq__button::-webkit-details-marker {
  display: none;
}

.guide-faq__button::after {
  content: "+";
  position: absolute;
  right: 1.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--rex-primary);
  font-weight: 600;
  font-size: 1.2rem;
}

.guide-faq__item[open] .guide-faq__button::after {
  content: "–";
}

.guide-faq__content {
  padding: 0 1.8rem 1.6rem;
  font-size: 0.98rem;
  color: rgba(30, 30, 30, 0.68);
  line-height: 1.7;
}
.cyprus-intro {
  background: var(--rex-white);
  padding: clamp(6rem, 6vw, 8rem) 0;
}

.cyprus-intro__copy p {
  font-size: 1.05rem;
  color: rgba(30, 30, 30, 0.68);
  margin: 0;
}

.cyprus-intro__visual {
  border-radius: var(--rex-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.cyprus-intro__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cyprus-advantages {
  background: #fafafa;
  padding: clamp(6rem, 6vw, 8rem) 0;
}

.cyprus-advantages__title {
  font-size: 2rem;
  color: var(--rex-dark);
  margin-bottom: 0;
}

.cyprus-advantages__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 5vw, 2.4rem);
}

.cyprus-advantages__card {
  background: #ffffff;
  border-radius: var(--rex-radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  padding: 2.2rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cyprus-advantages__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 34px rgba(237, 56, 51, 0.16);
}

.cyprus-advantages__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(237, 56, 51, 0.12);
  color: var(--rex-primary);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 12px 28px rgba(237, 56, 51, 0.18);
}

.cyprus-advantages__card h3 {
  font-size: 1.25rem;
  color: var(--rex-dark);
  margin-bottom: 0.75rem;
}

.cyprus-advantages__card p {
  font-size: 0.95rem;
  color: rgba(30, 30, 30, 0.62);
  margin: 0;
}

.cyprus-data {
  background: var(--rex-white);
  padding: clamp(6rem, 6vw, 8rem) 0;
}

.cyprus-data__visual {
  border-radius: var(--rex-radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.cyprus-data__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cyprus-data__copy h2 {
  font-size: 2rem;
  color: var(--rex-dark);
  margin-bottom: 1.5rem;
}

.cyprus-data__copy p {
  font-size: 1.02rem;
  color: rgba(30, 30, 30, 0.68);
  margin: 0;
}

.cyprus-highlight {
  background: #fafafa;
  padding: clamp(5.5rem, 8vw, 7rem) 0;
}

.cyprus-highlight__quote {
  margin: 0 auto;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--rex-dark);
  max-width: 720px;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--rex-primary);
  background: rgba(237, 56, 51, 0.08);
  border-radius: 0 16px 16px 0;
  text-align: center;
}
/* Guide Section */
.guide-section {
  background: linear-gradient(180deg, #f5f6fb 0%, #ffffff 100%);
  padding: clamp(6rem, 6vw, 8rem) 0;
  overflow: hidden;
}

.guide-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding: 2.5rem 1.75rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.guide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(237, 56, 51, 0.22);
}

.guide-card:hover .guide-step {
  background: var(--rex-primary-gradient);
  color: #fff;
}

.guide-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: rgba(237, 56, 51, 0.12);
  color: var(--rex-primary);
  font-weight: 600;
  transition: background 0.35s ease, color 0.35s ease;
}

.guide-desc {
  font-size: 0.95rem;
  color: rgba(30, 30, 30, 0.66);
}

/* Testimonials */
.testimonials-section {
  background: #f6f7fb;
  padding: clamp(6rem, 6vw, 8rem) 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--rex-radius-lg);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(237, 56, 51, 0.22);
}

.testimonial-quote {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 56, 51, 0.16), rgba(237, 56, 51, 0.04));
  display: grid;
  place-items: center;
  color: var(--rex-primary);
  font-size: 1.6rem;
  box-shadow: 0 12px 30px rgba(237, 56, 51, 0.18);
}

/* Offer Section */
.offer-section {
  background: linear-gradient(120deg, rgba(237, 56, 51, 0.95), rgba(197, 48, 46, 0.98));
  position: relative;
  overflow: hidden;
  padding: clamp(6.5rem, 6vw, 9rem) 0;
}

.offer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: 0.16;
  pointer-events: none;
}

.offer-section .container {
  position: relative;
  z-index: 1;
}

.offer-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.92);
}

.offer-trust li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.offer-trust i {
  color: rgba(255, 255, 255, 0.9);
}

.offer-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.offer-stat {
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.offer-stat__value {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  font-weight: 700;
  color: #fff;
}

.offer-stat__label {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.offer-cta-card {
  border-radius: 32px;
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: 0 30px 80px rgba(6, 8, 20, 0.25);
  border: 1px solid rgba(15, 23, 42, 0.05);
  position: relative;
  overflow: hidden;
}

.offer-cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(237, 56, 51, 0.08), transparent);
  pointer-events: none;
}

.offer-cta-card > * {
  position: relative;
  z-index: 1;
}

.offer-cta-steps li {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: rgba(15, 23, 42, 0.75);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.offer-cta-steps li i {
  color: var(--rex-primary);
  font-size: 1.1rem;
}

.offer-cta-steps li:last-child {
  margin-bottom: 0;
}

.offer-cta-actions .btn {
  border-radius: 999px;
}

.btn-glass {
  background: rgba(237, 56, 51, 0.12);
  color: var(--rex-primary);
  border: 1px solid #ED1C2466;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-glass:hover {
  background: rgba(237, 56, 51, 0.2);
  color: var(--rex-primary-dark, #b30d0a);
}

.offer-form-wrapper {
  border-radius: var(--rex-radius-lg);
  box-shadow: 0 26px 60px rgba(7, 19, 44, 0.24);
}

.offer-form-wrapper .form-control,
.offer-form-wrapper .form-select,
.offer-form-wrapper textarea {
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  background: rgba(250, 251, 255, 0.96);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.offer-form-wrapper .form-control:focus,
.offer-form-wrapper .form-select:focus,
.offer-form-wrapper textarea:focus {
  border-color: rgba(237, 56, 51, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(237, 56, 51, 0.18);
}

/* Footer */
.footer-section {
  background: linear-gradient(160deg, #c32c2a 0%, #0f0f11 85%);
  position: relative;
  padding-top: clamp(5rem, 6vw, 7rem);
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(237, 56, 51, 0.35), transparent 55%);
  mix-blend-mode: screen;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-section a:hover {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
}

.footer-brand {
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.border-white-10 {
  border-color: rgba(255, 255, 255, 0.2) !important;
}

.logo-placeholder {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(237, 56, 51, 0.12);
  color: var(--rex-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.rounded-top-4 {
  border-top-left-radius: var(--rex-radius-lg) !important;
  border-top-right-radius: var(--rex-radius-lg) !important;
}

/* Responsive tweaks */
@media (max-width: 1199.98px) {
  .hero-banner__visual {
    max-width: 480px;
  }

  .project-image {
    height: 210px;
  }
}

@media (max-width: 991.98px) {
  .projects-listing__grid_3{
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .navbar-nav .nav-link {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  }

  .navbar-nav li:last-child .nav-link {
    border-bottom: none;
  }

  .hero-banner {
    min-height: auto;
  }

  .hero-banner__content {
    text-align: center;
    margin: 0 auto;
  }

  .hero-banner__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-banner__actions {
    justify-content: center;
  }

  .hero-banner__visual {
    margin: 0 auto;
  }

  .project-detail {
    padding: clamp(4.5rem, 10vw, 6.5rem) 0;
  }

  .project-detail__info-card {
    margin-top: 1.75rem;
    padding: 2.2rem;
  }

  .project-detail__meta {
    grid-template-columns: 1fr;
  }

  .project-offer__panel {
    border-radius: 28px;
    padding: clamp(3.5rem, 9vw, 5rem);
  }

  .guide-intro__content {
    gap: 2rem;
  }

  .guide-insights__stack {
    gap: 2rem;
  }

  .about-intro__visual,
  .about-mission__visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .intro-hero__inner {
    text-align: center;
    margin: 0 auto;
    padding: 2.4rem 0 2rem;
  }

  .intro-hero__title {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .intro-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
  }

  .intro-hero__actions {
    justify-content: center;
  }

  .intro-hero__nav {
    display: none;
  }

  .contact-info__content {
    padding: 2.25rem;
  }

  .contact-form-card {
    padding: 2.25rem;
    margin-top: 1.5rem;
  }

  .contact-map__card {
    padding: 1.75rem;
  }

  .about-mission__copy {
    text-align: center;
  }

  .about-team__grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 767.98px) {
  .projects-listing__grid_3{
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .hero-banner {
    padding: 5rem 0 4rem;
  }

  .hero-banner__background {
    opacity: 0.85;
  }

  .hero-banner__actions {
    flex-direction: column;
    gap: 0.9rem;
  }

  .hero-banner__btn {
    width: 100%;
  }

  .projects-page-heading__trail {
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .projects-listing__content {
    padding: 1.8rem 1.8rem 1.6rem;
  }

  .projects-contact__btn {
    width: 100%;
  }

  .project-detail__thumbnails {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-detail__info-card {
    margin-top: 2.5rem;
  }

  .project-offer__form .col-md-4 {
    width: 100%;
  }

  .floating-card {
    padding: 2.25rem 1.5rem !important;
  }

  .project-image {
    height: 220px;
  }

  .map-placeholder {
    padding-top: 70%;
  }

  .cyprus-intro__visual,
  .cyprus-data__visual {
    max-width: 480px;
    margin: 0 auto;
  }

  .cyprus-advantages__grid {
    grid-template-columns: 1fr;
  }

  .guide-insights__visual {
    margin-top: 1.5rem;
  }

  .about-intro__copy {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-mission__copy {
    text-align: center;
  }

  .contact-info__content {
    padding: 2rem;
  }

  .intro-hero {
    padding-top: calc(var(--rex-header-height) + 12px);
  }

  .intro-hero__inner {
    padding: 2rem 0 1.6rem;
  }

  .intro-hero__eyebrow {
    margin-bottom: 1rem;
  }

  .intro-hero__title {
    font-size: clamp(2rem, 6vw, 2.6rem);
  }

  .intro-hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.8rem;
  }

  .intro-hero__actions {
    gap: 0.75rem;
  }

  .intro-hero__btn {
    width: 100%;
    padding: 0.9rem 1.7rem;
  }

  .intro-hero__pagination {
    bottom: 1.6rem;
  }

  .contact-info__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .contact-info__icon {
    width: 52px;
    height: 52px;
    font-size: 1.2rem;
  }

  .contact-info__social {
    justify-content: flex-start;
  }

  .contact-form-card {
    padding: 2rem;
  }

  .contact-map__subtitle {
    font-size: 0.95rem;
  }

  .contact-map__card {
    padding: 1.6rem;
  }
}

@media (max-width: 575.98px) {
  .hero-banner__title {
    font-size: 2.35rem;
  }

  .hero-banner__subtitle {
    font-size: 1.05rem;
  }

  .project-detail__thumbnails {
    grid-template-columns: 1fr;
  }

  .project-offer__panel {
    padding: 3.5rem 2rem;
    border-radius: 24px;
  }

  .cyprus-intro__copy p {
    font-size: 1rem;
  }

  .cyprus-highlight__quote {
    border-radius: 12px;
    padding: 1.4rem;
  }

  .guide-intro__content p {
    font-size: 1rem;
  }

  .guide-faq__button {
    padding-right: 3.2rem;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
  }

  .about-team__card {
    padding: 2rem 1.6rem;
  }

  .contact-info__content {
    padding: 1.8rem;
  }

  .contact-info__list {
    gap: 1rem;
  }

  .contact-info__item {
    padding: 1.05rem 1.15rem;
  }

  .contact-info__social {
    justify-content: center;
  }

  .contact-info__social-link {
    width: 40px;
    height: 40px;
  }

  .contact-form-card {
    padding: 1.85rem;
  }

  .contact-map__card {
    padding: 1.4rem;
  }

  .contact-map__frame {
    border-radius: 16px;
  }

  .intro-hero__inner {
    padding: 1.7rem 0 1.4rem;
  }

  .intro-hero__title {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }

  .intro-hero__subtitle {
    font-size: 0.98rem;
  }
}
.blog-grid {
  background: var(--rex-white);
  padding: clamp(6rem, 8vw, 8rem) 0;
}

.blog-grid__title {
  font-size: 2rem;
  color: var(--rex-dark);
  margin: 0;
}

.blog-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 2.5rem);
  justify-items: center;
}

.blog-card {
  background: #ffffff;
  border-radius: var(--rex-radius-md);
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  max-width: 360px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(237, 56, 51, 0.16);
}

.blog-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 1.8rem 1.9rem 2rem;
  display: grid;
  gap: 0.9rem;
}

.blog-card__meta {
  font-size: 0.85rem;
  color: #888888;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card__title {
  font-size: 1.3rem;
  color: var(--rex-dark);
  margin: 0;
}

.blog-card__excerpt {
  font-size: 0.98rem;
  color: rgba(30, 30, 30, 0.68);
  margin: 0;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--rex-primary);
  font-weight: 600;
  text-decoration: none;
}

.blog-card__link:hover {
  color: var(--rex-primary-light);
}

.blog-detail {
  background: var(--rex-white);
}

.blog-detail__feature {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--rex-radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.blog-detail__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-detail__content {
  background: var(--rex-white);
  padding: clamp(5.5rem, 8vw, 7rem) 0;
}

.blog-detail__content .container {
  max-width: 900px;
}

.blog-detail__header {
  display: grid;
  gap: 1.4rem;
  margin-bottom: 3rem;
}

.blog-detail__meta {
  font-size: 0.85rem;
  color: #888888;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-detail__header h1 {
  font-size: clamp(2.3rem, 3.2vw, 3rem);
  color: var(--rex-dark);
  margin: 0;
}

.blog-detail__lead {
  font-size: 1.05rem;
  color: rgba(30, 30, 30, 0.68);
}

.blog-detail__body {
  display: grid;
  gap: 2.4rem;
  font-size: 1.02rem;
  color: rgba(30, 30, 30, 0.75);
}

.blog-detail__body h2,
.blog-detail__body h3 {
  color: var(--rex-dark);
  margin-bottom: 0.8rem;
}

.blog-detail__body ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.blog-detail__body li {
  color: rgba(30, 30, 30, 0.72);
}

.blog-detail__body strong {
  color: var(--rex-dark);
}

.blog-detail__quote {
  font-style: italic;
  padding: 1.4rem 1.6rem;
  border-left: 4px solid var(--rex-primary);
  background: #fafafa;
  border-radius: 0 16px 16px 0;
  color: var(--rex-dark);
}

.blog-detail__image {
  margin: 0;
}

.blog-detail__image img {
  width: 100%;
  border-radius: var(--rex-radius-md);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  margin-bottom: 0.8rem;
}

.blog-detail__image figcaption {
  font-size: 0.85rem;
  color: #888888;
}

.related-posts {
  background: #fafafa;
  padding: clamp(6rem, 8vw, 8rem) 0;
}

.related-posts__title {
  font-size: 1.9rem;
  color: var(--rex-dark);
  margin-bottom: 0.25rem;
}

.related-posts__subtitle {
  font-size: 1rem;
  color: rgba(30, 30, 30, 0.62);
  margin: 0;
}

/* Offer Modal */
.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(2px);
}

.offer-modal.is-open {
  display: flex;
}

.offer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 30, 0.7);
  backdrop-filter: blur(2px);
}

.offer-modal__dialog {
    position: relative;
    background: #ffffff;
    border-radius: 32px;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    width: min(800px, 100%);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    z-index: 1;
    animation: modalFadeUp 0.4s ease;
    overflow-y: scroll;
}

.offer-modal__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.offer-modal__eyebrow {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(15, 15, 15, 0.65);
}

.offer-modal__title {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  margin: 0;
  color: var(--rex-dark);
}

.offer-modal__close {
  border: 0;
  background: rgba(238, 238, 238, 0.7);
  color: #0f172a;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.offer-modal__close:hover {
  background: rgba(229, 231, 235, 0.9);
  transform: scale(1.05);
}

.offer-modal__body p {
  color: rgba(15, 15, 15, 0.7);
}

.offer-modal__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.offer-modal__field--full {
  grid-column: 1 / -1;
}

.offer-modal__label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(100, 116, 139, 0.85);
  margin-bottom: 0.35rem;
  display: inline-block;
}

.offer-modal__form .form-control {
  border-radius: 18px;
  padding: 0.85rem 1rem;
  background: #f8fafc;
  border: 1px solid transparent;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.offer-modal__form .form-control:focus {
  border-color: rgba(237, 56, 51, 0.4);
  box-shadow: 0 0 0 3px rgba(237, 56, 51, 0.12);
}

.offer-modal__form button {
  border-radius: 18px;
}

body.offer-modal-open {
  overflow: hidden;
}

@keyframes modalFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 575.98px) {
    .offer-modal__grid {
        grid-template-columns: 1fr;
        gap: 0rem;
    }
    .offer-modal__grid textarea.form-control {
        height: 55px;
    }
    .offer-modal__header {
        margin-bottom: 5px !important;
    }
    .offer-modal__body p {
        margin-bottom:0px !important;
    }
}


.w-maks{
  width: max-content;
}

.navbar-brand img {
    width: 260px;
}

.navbar-collapse{
  margin-right: 100px;
}

.swiper {
   
    overflow-y: visible;
   
}
img.logo {
    width: 100%;
    height: 30px;
}
.swal2-container.swal2-center.swal2-backdrop-show {
    z-index: 99999999999;
}

.sell-land-button {
    position: fixed; 
    bottom: 25px;
    right: 25px;
    width: max-content;
    height: min-content;
    /* background: #e60000; */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    transition: .2s;
    color: #fff;
    border: none !important;
}
.sell-land-button:hover {
    transform: scale(1.05);
}
.sell-land-button img {
    width: 32px;
    height: 32px;
}
/* Ana grid yapısı */
.sell-grid {
    display: grid;
    gap: 20px;
}

/* 3 kolonlu satır */
.sell-col-3 {
    grid-column: span 1;
}

/* 2 kolonlu satır */
.sell-col-2 {
    grid-column: span 1;
}

/* Full width alan */
.sell-full {
    grid-column: 1 / -1;
}

/* Masaüstü düzeni */
@media (min-width: 768px) {
    .sell-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    /* 2 kolonlu satırda 3 yerine 2 kolon kullanacağız */
    .sell-col-2 {
        grid-column: span 1;
    }
    /* 2 kolonlu satırları 2 kolon moduna almak için: */
    .sell-col-2:nth-child(4),
    .sell-col-2:nth-child(5) {
        grid-column: span 1;
    }

    /* 2 kolon satırını 3 kolon grid içinde ortalamak */
    .sell-col-2:nth-child(4) {
        grid-column: 1 / span 1;
    }
    .sell-col-2:nth-child(5) {
        grid-column: 2 / span 1;
    }
}

/* Mobilde hepsi 1 kolon */
@media (max-width: 767px) {
    .sell-grid {
        grid-template-columns: 1fr;
    }
    .sell-col-3,
    .sell-col-2,
    .sell-full {
        grid-column: 1 / -1;
    }
    div#sellLandModal .offer-modal__body {
      height: 550px;
      overflow: scroll;
  }
}
