section {
  padding: 0;
}
.interior-about {
  background: #0a0a0a;
  padding: 120px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 80px;
  align-items: center;
}

.about-image {
  height: 650px;
  overflow: hidden;
  border-radius: 20px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-tag {
  color: #c9a96e;
  letter-spacing: 3px;
  font-size: 13px;
  display: block;
  margin-bottom: 15px;
}

.about-content h2 {
  color: #fff;
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-content p {
  color: #bdbdbd;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.stat-box {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 25px;
  transition: 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: #c9a96e;
}

.stat-box h3 {
  color: #c9a96e;
  font-size: 48px;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}

.stat-box span {
  color: #bdbdbd;
  font-size: 14px;
  line-height: 1.5;
}

.about-btn {
  display: inline-flex;
  padding: 16px 32px;
  background: #c9a96e;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-content h2 {
    font-size: 38px;
  }

  .about-image {
    height: 500px;
  }

  .stat-box {
    padding: 20px;
  }

  .stat-box h3 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .about-image {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .about-content h2 {
    font-size: 30px;
  }

  .about-image {
    height: 280px;
  }

  .about-stats {
    gap: 12px;
  }

  .stat-box {
    padding: 15px;
    border-radius: 12px;
  }

  .stat-box h3 {
    font-size: 26px;
    margin-bottom: 6px;
  }

  .stat-box span {
    font-size: 11px;
    line-height: 1.4;
  }
}

.interior-services {
  padding: 120px 0;
  background: #050505;
}

.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-heading span {
  color: #c9a96e;
  letter-spacing: 2px;
  font-size: 13px;
}

.section-heading h2 {
  color: #fff;
  font-size: 52px;
  margin: 15px 0;
}

.section-heading p {
  color: #bdbdbd;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  color: #fff;
  margin-bottom: 15px;
}

.service-content p {
  color: #bdbdbd;
  line-height: 1.8;
  margin-bottom: 20px;
}

.service-content a {
  color: #c9a96e;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 34px;
  }

  .service-card img {
    height: 220px;
  }
}

.design-process {
  position: relative;
  padding: 140px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.82)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1974&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.design-process .section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 100px;
}

.design-process .section-heading span {
  color: #c9a96e;
  letter-spacing: 3px;
  font-size: 13px;
}

.design-process .section-heading h2 {
  color: #fff;
  font-size: 60px;
  margin: 15px 0;
}

.design-process .section-heading p {
  color: #d1d1d1;
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #c9a96e;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  margin-bottom: 80px;
}

.timeline-item.left {
  padding-right: 70px;
}

.timeline-item.right {
  margin-left: 50%;
  padding-left: 70px;
}

.timeline-content {
  background: rgba(17, 17, 17, 0.65);
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline-content:hover {
  border-color: #c9a96e;
}

.step-no {
  display: block;
  color: #c9a96e;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.timeline-content h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 28px;
}

.timeline-content p {
  color: #d1d1d1;
  line-height: 1.8;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #c9a96e;
  border-radius: 50%;
  top: 35px;
}

.timeline-item.left::before {
  right: -10px;
}

.timeline-item.right::before {
  left: -10px;
}

@media (max-width: 991px) {
  .timeline-line {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    margin-left: 0 !important;
    padding-left: 60px !important;
    padding-right: 0 !important;
  }

  .timeline-item::before {
    left: 10px !important;
  }

  .design-process .section-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .design-process {
    padding: 100px 0;
  }

  .timeline-content {
    padding: 20px;
  }

  .step-no {
    font-size: 32px;
  }

  .timeline-content h3 {
    font-size: 22px;
  }
}

.featured-projects {
  background: #050505;
  padding: 120px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 350px;
}

.project-card.large {
  grid-column: span 2;
  height: 450px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.project-card:hover img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.project-overlay span {
  color: #c9a96e;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.project-overlay h3 {
  color: #fff;
  font-size: 28px;
  margin: 0;
}

@media (max-width: 991px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .project-card,
  .project-card.large {
    grid-column: auto;
    height: 280px;
  }

  .project-overlay {
    padding: 20px;
  }

  .project-overlay h3 {
    font-size: 22px;
  }
}

.interior-cta {
  position: relative;
  padding: 150px 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=1974&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-content {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.cta-content span {
  color: #c9a96e;
  letter-spacing: 3px;
  font-size: 14px;
}

.cta-content h2 {
  color: #fff;
  font-size: 68px;
  margin: 20px 0;
  line-height: 1.1;
}

.cta-content p {
  color: #d5d5d5;
  line-height: 1.9;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 18px 35px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn.primary {
  background: #c9a96e;
  color: #000;
}

.cta-btn.secondary {
  border: 1px solid #fff;
  color: #fff;
}

.cta-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .interior-cta {
    padding: 100px 20px;
  }

  .cta-content h2 {
    font-size: 42px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

.about-banner {
  position: relative;
  height: 650px;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?q=80&w=2000&auto=format&fit=crop");

  background-size: cover;
  background-position: center;

  display: flex;
  align-items: flex-end;
  top: 0;
  padding-top: 145px;
}

.about-banner .container {
  width: 100%;
}

.about-banner-content {
  max-width: 600px;
}

.about-banner-content h1 {
  color: #fff;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 40px;
}

.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 15px;

  border-left: 3px solid #c9a96e;

  padding-left: 25px;
}

.about-breadcrumb a,
.about-breadcrumb span {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

.about-breadcrumb i {
  color: #fff;
  font-size: 12px;
}

@media (max-width: 991px) {
  .about-banner {
    height: 500px;
  }

  .about-banner-content h1 {
    font-size: 56px;
  }
}

@media (max-width: 576px) {
  .about-banner {
    height: 400px;
  }

  .about-banner-content {
    padding-bottom: 10px;
  }

  .about-banner-content h1 {
    font-size: 30px;
  }

  .about-breadcrumb {
    gap: 10px;
    padding-left: 11px;
  }

  .about-breadcrumb a,
  .about-breadcrumb span {
    font-size: 14px;
  }
}

.design-philosophy {
  background: #050505;
  padding: 160px 0;
}

.design-philosophy .container {
  max-width: 1000px;
  text-align: center;
}

.quote-icon {
  margin-bottom: 10px;
}

.quote-icon i {
  font-size: 50px;
  color: #c9a96e;
}

.design-philosophy blockquote {
  color: #fff;
  font-size: 52px;
  line-height: 1.4;
  font-weight: 300;
  margin: 0 auto 40px;
}

.quote-author {
  color: #c9a96e;
  letter-spacing: 4px;
  font-size: 14px;
}

@media (max-width: 768px) {
  .design-philosophy {
    padding: 100px 0;
  }

  .design-philosophy blockquote {
    font-size: 28px;
  }
}

.about-showcase {
  background: #050505;
  padding: 120px 0;
}

.about-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-showcase-image {
  position: relative;
}

.about-showcase-image img {
  width: 100%;
  height: 700px;
  object-fit: cover;
  display: block;
}

.experience-badge {
  position: absolute;
  top: 0;
  right: 60px;

  background: #c9a96e;

  width: 150px;
  height: 150px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
}

.experience-badge h3 {
  color: #fff;
  font-size: 34px;
  margin: 0;
  line-height: 1;
}

.experience-badge span {
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
}

.section-tag {
  color: #c9a96e;
  font-size: 14px;
  letter-spacing: 2px;
}

.about-showcase-content h2 {
  color: #fff;
  font-size: 44px;
  line-height: 1.2;
  font-weight: 400;
  margin: 20px 0 30px;
}

.about-showcase-content p {
  color: #cfcfcf;
  line-height: 2;
  margin-bottom: 20px;
}

.about-features {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}

.feature-item i {
  color: #c9a96e;
  font-size: 40px;
  min-width: 40px;
  margin-top: 5px;
}

.feature-item h4 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 28px;
}

.feature-item p {
  margin: 0;
}

.about-quote {
  margin-top: 50px;
  background: #0d0d0d;
  padding: 35px;
  display: flex;
  gap: 25px;
  align-items: center;
}

.quote-icon {
  width: 50px;
  height: 50px;
  background: #c9a96e;

  display: flex;
  justify-content: center;
  align-items: center;

  flex-shrink: 0;
}

.quote-icon i {
  color: #fff;
  font-size: 36px;
}

.about-quote p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

@media (max-width: 1200px) {
  .about-showcase-content h2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  .about-showcase-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-showcase-image img {
    height: 500px;
  }

  .experience-badge {
    width: 180px;
    height: 180px;
    right: 20px;
  }

  .experience-badge h3 {
    font-size: 48px;
  }

  .about-showcase-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 576px) {
  .about-showcase {
    padding: 80px 0;
  }

  .about-showcase-image img {
    height: 350px;
  }

  .experience-badge {
    width: 140px;
    height: 140px;
  }

  .experience-badge h3 {
    font-size: 36px;
  }

  .experience-badge span {
    font-size: 16px;
  }

  .about-showcase-content h2 {
    font-size: 22px;
  }

  .feature-item {
    gap: 15px;
  }

  .feature-item h4 {
    font-size: 22px;
  }

  .about-quote {
    flex-direction: column;
    text-align: center;
  }
}

.why-omorezi {
  background: #050505;
  padding: 140px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.why-content {
  position: sticky;
  top: 120px;
}

.why-content .section-tag {
  color: #c9a96e;
  font-size: 14px;
  letter-spacing: 2px;
}

.why-content h2 {
  color: #fff;
  font-size: 68px;
  line-height: 1.1;
  font-weight: 400;
  margin: 20px 0;
}

.why-content h2 span {
  color: #c9a96e;
}

.why-content p {
  color: #bdbdbd;
  line-height: 2;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.why-card {
  background: #111;
  border: 1px solid rgba(201, 169, 110, 0.15);
  padding: 40px;
  min-height: 260px;
  position: relative;
  transition: 0.4s ease;
}

.why-card:hover {
  transform: translateY(-10px);
  border-color: #c9a96e;
}

.why-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  border-right: 2px solid #c9a96e;
  border-bottom: 2px solid #c9a96e;
}

.why-card i {
  font-size: 48px;
  color: #c9a96e;
  margin-bottom: 25px;
}

.why-card h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 400;
}

.why-card p {
  color: #bdbdbd;
  line-height: 1.9;
}

.why-card-wide {
  grid-column: span 2;
  min-height: auto;
}

@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-content {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .why-content h2 {
    font-size: 42px;
  }

  .why-cards {
    grid-template-columns: 1fr;
  }

  .why-card-wide {
    grid-column: auto;
  }
}

@media (max-width: 576px) {
  .why-omorezi {
    padding: 90px 0;
  }

  .why-card {
    padding: 30px;
    min-height: auto;
  }

  .why-card h3 {
    font-size: 22px;
  }
}

.brand-foundation {
  background: #0b0b0b;
  padding: 120px 0;
}

.foundation-heading {
  text-align: center;
  margin-bottom: 80px;
}

.foundation-heading span {
  color: #c9a96e;
  letter-spacing: 2px;
  font-size: 14px;
}

.foundation-heading h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 400;
  margin-top: 15px;
}

.foundation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.foundation-box {
  padding: 40px 0;
  border-top: 1px solid rgba(201, 169, 110, 0.3);
}

.foundation-label {
  color: #c9a96e;
  font-size: 14px;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 25px;
}

.foundation-box p {
  color: #d0d0d0;
  line-height: 2;
  font-size: 17px;
}

.foundation-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.foundation-box li {
  color: #d0d0d0;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
  .foundation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .foundation-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 576px) {
  .brand-foundation {
    padding: 80px 0;
  }

  .foundation-heading h2 {
    font-size: 32px;
  }
}

.design-philosophy {
  background: #050505;
  padding: 160px 0;
}

.philosophy-content {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.design-philosophy .section-tag {
  color: #c9a96e;
  font-size: 14px;
  letter-spacing: 3px;
}

.design-philosophy h2 {
  color: #fff;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.2;
  margin: 30px auto;
  max-width: 900px;
}

.philosophy-quote {
  color: #d0d0d0;
  font-size: 26px;
  line-height: 2;
  max-width: 850px;
  margin: 0 auto;
  font-weight: 300;
}

.philosophy-signature {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.philosophy-signature span {
  width: 80px;
  height: 2px;
  background: #c9a96e;
}

.philosophy-signature h4 {
  color: #c9a96e;
  letter-spacing: 4px;
  font-weight: 500;
}

@media (max-width: 991px) {
  .design-philosophy h2 {
    font-size: 50px;
  }

  .philosophy-quote {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .design-philosophy {
    padding: 100px 0;
  }

  .design-philosophy h2 {
    font-size: 34px;
  }

  .philosophy-quote {
    font-size: 17px;
    line-height: 1.9;
  }
}

.about-cta{

    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:
    radial-gradient(
        circle at top left,
        rgba(201,169,110,.15),
        transparent 30%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(201,169,110,.08),
        transparent 40%
    ),
    linear-gradient(
        135deg,
        #0b1015 0%,
        #111820 50%,
        #0b1015 100%
    );

}

.about-cta::before{

    content:'';

    position:absolute;

    top:-150px;

    right:-150px;

    width:400px;

    height:400px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(201,169,110,.12),
        transparent 70%
    );

}

.about-cta::after{

    content:'';

    position:absolute;

    bottom:-200px;

    left:-200px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(201,169,110,.08),
        transparent 70%
    );

}

.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 60px;
  align-items: center;

  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-cta-content h2 {
  color: #fff;
  font-size: 56px;
  font-weight: 400;
  margin-bottom: 20px;
}

.about-cta-content p {
  color: #bdbdbd;
  font-size: 18px;
  line-height: 1.9;
  max-width: 650px;
}

.cta-book-btn {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 90px;

  background: #c9a96e;
  color: #fff;

  text-decoration: none;
  font-size: 18px;
  letter-spacing: 1px;

  transition: 0.3s ease;
}

.cta-book-btn:hover {
  background: #b68f4f;
}

@media (max-width: 991px) {
  .about-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-cta-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 576px) {
  .about-cta-content h2 {
    font-size: 32px;
  }

  .cta-book-btn {
    height: 70px;
    font-size: 16px;
  }
}

.services-banner {
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("https://images.unsplash.com/photo-1497366412874-3415097a27e7?q=80&w=2000&auto=format&fit=crop");

  background-size: cover;
  background-position: center;
}

.services-showcase{
    background:#050505;
    padding:120px 0;
}

.showcase-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
    margin-bottom:150px;
}

.showcase-row:last-child{
    margin-bottom:0;
}

.showcase-row.reverse .showcase-image{
    order:2;
}

.showcase-row.reverse .showcase-content{
    order:1;
}

.showcase-image img{
    width:100%;
    height:700px;
    object-fit:cover;
}

.showcase-content span{
    color:#c9a96e;
    letter-spacing:2px;
    font-size:14px;
}

.showcase-content h2{
    color:#fff;
    font-size:64px;
    line-height:1.15;
    font-weight:400;
    margin:20px 0 25px;
}

.showcase-content p{
    color:#bdbdbd;
    line-height:2;
    margin-bottom:35px;
}

.showcase-content ul{
    list-style:none;
    padding:0;
    margin:0 0 40px;
}

.showcase-content ul li{
    color:#fff;
    padding:12px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.showcase-content ul li:before{
    content:"✓";
    color:#c9a96e;
    margin-right:12px;
}

.showcase-btn{
    display:inline-block;
    background:#c9a96e;
    color:#fff;
    text-decoration:none;
    padding:18px 35px;
    transition:.3s;
}

.showcase-btn:hover{
    background:#b89153;
}

@media(max-width:991px){

    .showcase-row{
        grid-template-columns:1fr;
        gap:40px;
        margin-bottom:100px;
    }

    .showcase-row.reverse .showcase-image,
    .showcase-row.reverse .showcase-content{
        order:unset;
    }

    .showcase-image img{
        height:450px;
    }

    .showcase-content h2{
        font-size:42px;
    }

}

@media(max-width:576px){

    .showcase-image img{
        height:320px;
    }

    .showcase-content h2{
        font-size:32px;
    }

}

.interior-overview{
    background:#050505;
    padding:120px 0;
}

.overview-header{
    margin-bottom:40px;
}

.overview-header span{
    color:#c9a96e;
    letter-spacing:2px;
    font-size:14px;
}

.overview-header h2{
    color:#fff;
    font-size:40px;
    line-height:1.15;
    margin-top:15px;
    font-weight:400;
    max-width:900px;
}

.overview-text{
    color:#bdbdbd;
    font-size:19px;
    line-height:1.9;
    margin-bottom:60px;
}

.overview-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px 80px;
    margin-bottom:70px;
}

.feature-item-service{
    display:flex;
    align-items:center;
    gap:15px;
}

.feature-item-service i{
    color:#c9a96e;
    font-size:17px;
}

.feature-item-service span{
    color:#fff;
    font-size:17px;
    font-weight:500;
}

.overview-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.overview-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:30px;
}

@media(max-width:991px){

    .overview-header h2{
        font-size:32px;
    }

    .overview-features{
        grid-template-columns:1fr;
        gap:20px;
    }

    .overview-images{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .overview-header h2{
        font-size:25px;
    }

    .overview-text{
        font-size: 15px;
    }

    .feature-item-service span{
        font-size:15px;
    }

    .overview-image img{
        height:320px;
    }

}

.services-cta{

    position:relative;

    padding:50px 0;

    overflow:hidden;

    background:
    radial-gradient(
        circle at top left,
        rgba(201,169,110,.15),
        transparent 30%
    ),
    radial-gradient(
        circle at bottom right,
        rgba(201,169,110,.08),
        transparent 40%
    ),
    linear-gradient(
        135deg,
        #0b1015 0%,
        #111820 50%,
        #0b1015 100%
    );

}

.services-cta::before{

    content:'';

    position:absolute;

    top:-150px;

    right:-150px;

    width:400px;

    height:400px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(201,169,110,.12),
        transparent 70%
    );

}

.services-cta::after{

    content:'';

    position:absolute;

    bottom:-200px;

    left:-200px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(201,169,110,.08),
        transparent 70%
    );

}

.services-cta-box{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.services-cta-box h2{
    font-size:50px;
    color:#fff;
    font-weight:400;
    margin-bottom:25px;
}

.services-cta-box p{
    max-width:650px;
    margin:auto;
    color:#fff;
    line-height:1.9;
    margin-bottom:40px;
}

.services-cta-btn{
    display:inline-block;
    background:#c9a96e;
    color:#fff;
    padding:18px 40px;
    text-decoration:none;
}