/*
Theme Name: Hartner Theme
Author: Vishnu
Version: 1.0
*/

:root {
  --gold: #c8a25a;
  --dark: #0f0f0f;
}

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

body {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

/* ======================
   NAVBAR
====================== */

.custom-navbar {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  padding: 30px 0;
}

.navbar-brand img {
  height: 55px;
}

.nav-link {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  margin: 0 12px;
}

.nav-link:hover {
  color: var(--gold);
}

.phone-link {
  color: #fff;
  margin-right: 20px;
  font-size: 14px;
}

.navbar-toggler {
  background: #fff !important;
}

.gold-btn {
  background: var(--gold);
  color: #000;
  border: none;
  padding: 14px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 600;
}

.gold-btn:hover {
  background: #d7b067;
}

.nav-right {
  display: flex;
  align-items: center;
}

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

.hero-section {
  position: relative;
  height: 850px;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.carousel-item img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.hero-content h1 {
  color: #fff;
  font-size: 45px;
  line-height: 1.1;
  margin-bottom: 30px;
}

.hero-content p {
  color: #fff;
  max-width: 650px;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 35px;
}

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

.outline-btn {
  border: 1px solid #fff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 0;
}

.outline-btn:hover {
  background: #fff;
  color: #000;
}

/* ======================
 FEATURE BAR
====================== */

.feature-bar {
  background: #111;
  padding: 35px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
}

.feature-item i {
  color: var(--gold);
  font-size: 34px;
}

.feature-item span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

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

@media (max-width: 991px) {
  .hero-section {
    height: 700px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .nav-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: 650px;
  }

  .hero-content h1 {
    font-size: 24px;
  }

  .hero-content p {
    font-size: 15px;
  }

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

  .feature-item {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}

/* ==========================
   SECTION COMMON
========================== */

.section-tag {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 40px;
  line-height: 1.1;
  color: #222;
  max-width: 70%;
}

.section-desc {
  color: #666;
  line-height: 1.9;
}

/* ==========================
   TRUST SECTION
========================== */

.trust-section {
  padding: 110px 0;
  background: #fff;
}

.trust-card {
  border: 1px solid var(--gold);
  text-align: center;
  padding: 45px 25px;
  height: 100%;
  transition: 0.3s;
}

.trust-card:hover {
  transform: translateY(-8px);
}

.trust-card i {
  font-size: 42px;
  color: var(--gold);
  margin-bottom: 25px;
}

.trust-card h5 {
 
  font-size: 28px;
  margin-bottom: 15px;
}

.trust-card p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

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

.services-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

}

.service-card {
  transition: 0.3s;
}

.services-section .services-header {
  max-width: 80%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 230px;
  object-fit: fill;
  transition: 0.5s;
}

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

.service-content {
  padding-top: 22px;
}

.service-content h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .services-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .section-title {
    font-size: 42px;
  }
}

@media (max-width: 767px) {
  .trust-section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 24px;
  }
	
	.trust-card h5 {
    font-size: 20px;
   
}

  .service-content h4 {
    font-size: 22px;
  }
}

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

.about-section {
  background: #111;
}

.about-left {
  padding: 55px 35px;
/*   background: linear-gradient(135deg, #0d0d0d, #1c1c1c); */
  height: 100%;
}

.about-left h2 {
  color: #fff;
 
  font-size: 30px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.about-left p {
  color: #cfcfcf;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-image {
  height: 100%;
}

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

.about-features {
  height: 100%;
  padding: 16px 20px;
/*   background: #161616; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
}

.about-feature:last-child {
  margin-bottom: 0;
}

.about-feature i {
  color: var(--gold);
  font-size: 30px;
}

.about-feature span {
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
  
}

/* ==========================
   TESTIMONIALS
========================== */

.testimonial-section {
  padding: 55px 0;
  background: #fff;
}

.testimonial-card {
  border: 1px solid var(--gold);
  padding: 25px;
  height: 100%;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.stars {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: #666;
  line-height: 1.9;
  margin-bottom: 25px;
}

.testimonial-card strong {
  color: #111;
  font-size: 15px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 1199px) {
  .about-left {
    padding: 60px 40px;
  }

  .about-features {
    padding: 60px 40px;
  }
}

@media (max-width: 991px) {
  .about-left h2 {
    font-size: 42px;
  }

  .about-image img {
    min-height: 450px;
  }

  .about-feature span {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .about-left {
    padding: 60px 25px;
  }

  .about-features {
    padding: 50px 25px;
  }

  .about-left h2 {
    font-size: 24px;
  }

  .testimonial-section {
    padding: 80px 0;
  }

  .testimonial-card {
    padding: 25px;
  }
}

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

.contact-cta {
  position: relative;
  background: url("images/Mietobjekt.jpeg") center center/cover;
	padding: 3rem 0px;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.cta-content h2 {
  color: #fff;
  font-size: 45px;
  line-height: 1.1;
  margin-bottom: 20px;
  
}

.cta-content p {
  color: #ddd;
  line-height: 1.8;
}

.contact-info-box {
  padding: 20px 10px;
}

.info-item {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 35px;
}

.info-item i {
  color: var(--gold);
  font-size: 26px;
}

.info-item h6 {
  color: #000;
  margin: 0;
}

.contact-form-box {
  background: #fff;
 
}

.contact-form-box .form-control {
  border-radius: 0;
  min-height: 55px;
}

.contact-form-box textarea {
  resize: none;
}

.wpcf7-spinner {
display: none !important;
}

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

.footer {
  background: #111;
/*   padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08); */
}

/* Fixed Footer - Desktop Only */
@media (min-width: 992px) {

  .footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
  }

  /* Space for fixed footer */
  body {
    padding-bottom: 90px;
  }
}

.footer-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-logo img {
  height: 55px;
  width: auto;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

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

.footer-contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-btn .gold-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-copy {
  color: #bcbcbc;
  font-size: 13px;
  white-space: nowrap;
}

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

@media (max-width: 991px) {

  .footer {
    position: static;
    width: 100%;
    padding: 30px 0;
  }

  body {
    padding-bottom: 0;
  }

  .footer-wrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .footer-contact-btn {
    width: 100%;
  }

  .footer-copy {
    margin-top: 5px;
  }
}

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

@media (max-width: 576px) {

  .footer {
    padding: 25px 0;
  }

  .footer-logo img {
    height: 45px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }

  .footer-contact-btn .gold-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .footer-copy {
    font-size: 12px;
    white-space: normal;
  }
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
  .cta-content {
    margin-bottom: 50px;
  }

  .cta-content h2 {
    font-size: 40px;
  }

  .contact-info-box {
    padding: 0;
    margin-bottom: 40px;
    margin-top: 3rem;
  }
}

@media (max-width: 767px) {
  .contact-cta {
    padding: 80px 0;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  .contact-form-box {
    padding: 25px;
  }

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

/* ==========================================
   PREMIUM PROPERTY LIST UI OVERRIDE
========================================== */

.property-section {
  background: #fff;
  padding: 100px 0;
}

.property-section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #000;
}

.property-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ececec;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  height: auto;

  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-8px);
}

.property-image {
  height: 260px;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.property-content{
    padding:24px;
    display:flex;
    flex-direction:column;
}

.property-header{
    margin-bottom:8px;
}

.property-header h3{
    font-size:19px;
    font-weight:700;
    line-height:1.4;
    margin:0;
    min-height:62px;
    word-break:break-word;
}

.property-location{
    display:flex;
    align-items:center;
    gap:8px;
    color:#777;
    margin-bottom:15px;
}

.property-location i{
    color:#c8a96e;
    flex-shrink:0;
}

.property-location span{
    display:block;
}

.property-price-box{
    margin-bottom:20px;
}

.property-price{
    color:#c8a96e;
    font-size:24px;
    font-weight:700;
}

.property-features {
  padding: 10px 0;
  margin-bottom: 20px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-row i {
  font-size: 24px;
  color: #c8a96e;
  flex-shrink: 0;
}

.property-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gallery-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);

    width:55px;
    height:55px;

    border:none;
    border-radius:50%;

    background:rgba(15,26,20,.75);
    backdrop-filter:blur(8px);

    color:#fff;

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

    cursor:pointer;

    transition:all .35s ease;

    z-index:20;

    opacity:0;
}

.property-hero-image:hover .gallery-nav{
    opacity:1;
}

.gallery-nav:hover{
    background:#c8a96e;
    color:#fff;

    transform:translateY(-50%) scale(1.08);

    box-shadow:0 10px 25px rgba(200,169,110,.35);
}

.gallery-nav i{
    font-size:28px;
    font-weight:700;
    line-height:1;
}

.prev-image{
    left:20px;
}

.next-image{
    right:20px;
}

.gallery-nav i{

    font-size:26px;

}

.feature-content span {
  font-size: 13px;
  color: #888;
  margin-bottom: 2px;
}

.feature-content strong {
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row i {
  color: #c8a96e;
  font-size: 22px;
  margin-right: 8px;
}

.feature-row span {
  color: #666;
}

.feature-row strong {
  color: #111;
  font-weight: 600;
}


@media (max-width: 768px) {
  .property-image {
    height: 220px;
  }

  .property-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
  }

  .property-header {
    flex-direction: column;
    gap: 5px;
  }
}

/* ====================================
   PROPERTY DETAILS PAGE
==================================== */

/* ==========================================================================
   Consolidated Design Properties (Add to style.css)
   ========================================================================== */
:root {
  --primary-gold: #b39250;
  --primary-gold-hover: #96793f;
  --text-gold: #c8a96e;
  --dark-charcoal: #1a1a1a;
  --muted-gray: #666666;
}

/* Base structural fixes for the page template */
.property-details-page {
  background-color: #fbfbfc;
 padding: 170px 0;
}

.text-gold {
  color: var(--text-gold) !important;
}

.tracking-wider {
  letter-spacing: 0.08em;
}

/* Custom Image Resizing Fixes */
.property-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.4s ease;
}

.property-hero-image:hover img {
  transform: scale(1.015);
}

/* Modern Card Adjustments */
.detail-card,
.sidebar-card {
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.02) !important;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.detail-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background-color: var(--primary-gold);
  border-radius: 2px;
}

/* Flexible Dashboard Property Grid */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

/* Premium Styling for badges and interactions */
.badge-status {
  background-color: rgba(179, 146, 80, 0.1);
  color: var(--primary-gold);
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  display: inline-block;
}

.btn-gold {
  background-color: var(--primary-gold);
  color: #ffffff !important;
  transition:
    background-color 0.2s ease,
    transform 0.1s ease;
}

.btn-gold:hover {
  background-color: var(--primary-gold-hover);
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(179, 146, 80, 0.3);
}

.btn-gold:active {
  transform: scale(0.98);
}


.property-specification-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
	margin-bottom: 2rem;
}

.property-spec-table{
    margin:0;
}

.property-spec-table thead{
    background:#f8f8f8;
}

.property-spec-table thead th{
    padding:16px 20px;
    font-size:15px;
    font-weight:700;
    color:#222;
    border-bottom:2px solid #ececec;
}

.property-spec-table tbody td{
    padding:13px 20px;
    vertical-align:middle;
    border-bottom:1px solid #f0f0f0;
    font-size:15px;
}

.property-spec-table tbody tr:last-child td{
    border-bottom:none;
}

.property-spec-table tbody td:first-child{
    width:55%;
    color:#666;
    font-weight:500;
}

.property-spec-table tbody td:last-child{
    width:45%;
    text-align:right;
    color:#111;
    font-weight:700;
}

.property-spec-table tbody tr:hover{
    background:#fafafa;
}


@media(max-width:991px){


.property-spec-table tbody td{
    padding:12px 15px;
    font-size:14px;
}

.property-spec-table thead th{
    padding:14px 15px;
}

}

/* ==========================================================================
   Responsive Adaptations (Media Queries)
   ========================================================================== */
@media (max-width: 991px) {
  .sticky-sidebar {
    position: static !important;
  }
}

@media (max-width: 768px) {
  .property-hero-image {
    height: 320px !important; /* Shorter header area on tablet/mobile screens */
  }
  .info-grid {
    grid-template-columns: 1fr; /* Stack specifications sequentially on mobile */
  }
  .property-title {
    font-size: 1.75rem;
  }
  .property-price {
    font-size: 1.5rem;
  }
}

.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.wpcf7-form textarea {
  height: 100px;
  resize: vertical;
}

.wpcf7-submit {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 0;
}

.wpcf7-submit:hover {
  opacity: 0.9;
}

#contactModal .modal-content{
    border:0;
    border-radius:20px;
    overflow:hidden;
	width: auto;
	margin: auto:
}

#contactModal .modal-header{
    border-bottom:1px solid #eee;
    padding:20px 25px;
}

#contactModal .modal-body{
    padding:30px;
}

#contactModal .btn-close{
    box-shadow:none;
}

/* Contact Form 7 inputs */

.contact-form-box .wpcf7-form-control:not(.wpcf7-submit){
    width:100%;
    height:56px;
    padding:0 18px;
    border:1px solid #e5e5e5;
    border-radius:14px;
    background:#f8f8f8;
    font-size:15px;
    transition:.3s;
    outline:none;
    box-shadow:none;
}

/* Textarea */
.contact-form-box textarea.wpcf7-form-control{
    height:150px;
    padding:16px 18px;
    resize:none;
}

/* Focus */
.contact-form-box .wpcf7-form-control:not(.wpcf7-submit):focus{
    background:#fff;
    border-color:#c8a96e;
    box-shadow:0 0 0 4px rgba(200,169,110,.15);
}

/* Placeholder */
.contact-form-box .wpcf7-form-control::placeholder{
    color:#999;
}

/* Submit Button */
.contact-form-box .wpcf7-submit{
    width:100%;
    height:56px;
    border:none;
    border-radius:14px;
    background:#c8a96e;
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.contact-form-box .wpcf7-submit:hover{
    background:#0f1a14;
}

.property-gallery{
    margin-top:20px;
}

.gallery-thumb{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    border:2px solid #eee;
    transition:.3s;
}

.gallery-thumb:hover,
.gallery-thumb.active{
    border-color:#c8a96e;
    transform:scale(1.05);
}

.page-content{
	margin-top: 2rem;
    min-height:70vh;
}

.page-description{
    max-width:900px;
    margin:auto;
    line-height:1.9;
    font-size:17px;
}

.page-description h2,
.page-description h3{
    margin-top:30px;
    margin-bottom:15px;
    color:#0f1a14;
}

.page-description p{
    margin-bottom:18px;
}

.page-description ul{
    padding-left:20px;
}

/* Contact Form 7 Label Color */
.wpcf7-form label {
    color: #0f1a14; /* Change to your preferred blue */
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.wpcf7-form label {
    color: #1e3a8a !important;
    font-weight: 600;
}

.gallery-modal{
    background:transparent;
    border:none;
    box-shadow:none;
}

.modal-backdrop.show{
    background:rgba(0,0,0,.95) !important;
    backdrop-filter:blur(15px);
}

/* Keep modal transparent */
#galleryModal .modal-content{
    background:transparent;
    border:none;
    box-shadow:none;
}

/* Center content */
#galleryModal .modal-dialog{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:100vh;
}

.modal-gallery-image{

    max-width:90%;

    max-height:80vh;

    object-fit:contain;

    margin:auto;

    border-radius:12px;

}

.gallery-close{

    position:absolute;

    top:30px;

    right:30px;

    z-index:100;
	background-color: #000 !important;
	color: #fff !important;
	padding: 0.5rem;

}

.gallery-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:60px;

    height:60px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#000;

    font-size:34px;

    z-index:100;

    transition:.3s;

}

.gallery-arrow:hover{

    background:#c8a96e;

}

.gallery-prev{

    left:35px;

}

.gallery-next{

    right:35px;

}

.modal-gallery-thumbs{

    position:absolute;

    bottom:30px;

    width:100%;

    display:flex;

    justify-content:center;

    gap:12px;

}

.modal-thumb{

    width:90px;

    height:70px;

    object-fit:cover;

    border-radius:8px;

    cursor:pointer;

    opacity:.7;

    transition:.3s;

}

.modal-thumb.active{

    border:3px solid #c8a96e;

    opacity:1;

}

.modal-thumb:hover{

    opacity:1;

}


/* Modal */
.ctcdetails-modal{
    border: 0;
    border-radius: 18px;
    overflow: hidden;
}

.ctcdetails-header{
    padding: 18px 24px;
    border-bottom: 1px solid #eee;
}

.ctcdetails-header .modal-title{
    font-weight: 700;
    font-size: 1.3rem;
}

.ctcdetails-body{
    padding: 24px;
}

.ctcdetails-info-item{
 display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.ctcdetails-info-item:last-child{
    margin-bottom: 0;
}

.ctcdetails-info-item i{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #c8a96e;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    flex-shrink: 0;
}

.ctcdetails-info-item h6{
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #222;
}

.ctcdetails-info-item a{
    color: inherit;
    text-decoration: none;
}

.ctcdetails-info-item a:hover{
    color: #c8a96e;
}

.footer-contact-btn{
    margin: 25px 0;
    text-align: center;
}

.footer-contact-btn .gold-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.page-id-142 .page-content{
    padding-top:120px !important;
}

.page-id-144 .page-content{
    padding-top:120px !important;
}