

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --gold:    #C9A96E;
  --gold-lt: #E8D5B0;
  --dark:    #1A1A2E;
  --slate:   #4A5568;
  --ivory:   #FAF8F4;
  --white:   #FFFFFF;
  --light:   #F4F0E8;
  --border:  #E2D9C8;
  --shadow:  rgba(26,26,46,0.10);
  --radius:  4px;
  --trans:   all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body[style] {
    padding-right: 0 !important;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--slate);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
     overflow-y: scroll;
}
  body.modal-open {
    padding-right: 0 !important;
}
h1,h2,h3,h4,h5 {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: var(--trans); }
img { max-width: 100%; height: auto; display: block; }

.section-pad { padding: 90px 0; }
.bg-ivory   { background: var(--ivory); }
.bg-light   { background: var(--light); }
.bg-white   { background: var(--white); }

/* ── Section Labels ──────────────────────────────────────── */
.section-label {
  display: inline-block;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--slate);
  max-width: 560px;
  opacity: .85;
}
.section-text{
  font-size:.95rem; 
  opacity:.87; 
  line-height:1.8;
}

.title-line {
  width: 52px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  border-radius: 2px;
  margin: 14px 0 14px;
}

/* center variant */
.text-center .title-line { margin-left: auto; margin-right: auto; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 4px 16px rgba(201,169,110,.30);
}
.btn-gold:hover {
  background: #b8935a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.40);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--gold);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: var(--trans);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--dark);
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── Navigation ──────────────────────────────────────────── */
.navbar-custom {
  background: rgba(255,255,255,0.96) !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
  box-shadow: 0 2px 20px var(--shadow);
}
.navbar {
    width: 100%;
    left: 0;
    right: 0;
}
.navbar-custom.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 30px var(--shadow);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-logo{
  height:50px;  
  width:auto;       
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .04em;
  color: var(--slate) !important;
  padding: 6px 14px !important;
  position: relative;
  transition: var(--trans);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--trans);
}

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

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 28px);
}

.navbar-toggler {
  border: 1.5px solid var(--border);
  padding: 5px 9px;
  border-radius: var(--radius);
}

.navbar-toggler:focus { box-shadow: none; }

/* ── Hero / Video Banner ─────────────────────────────────── */
.hero-section {
  position: relative;
  height:100vh;
  /* min-height: 640px; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
 background: linear-gradient(135deg, rgb(26 26 46 / 30%) 0%, rgb(26 26 46 / 62%) 60%, rgba(201, 169, 110, 0.20) 100%);
  z-index: 1;
}

.hero-content {
   top:9%;
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  animation: fadeUp 1s ease forwards;
}

/* .hero-eyebrow {
  display: inline-block;
  background: rgba(201,169,110,0.22);
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold-lt);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 24px;
  font-weight: 600;
  animation: fadeUp 1s .2s both;
} */
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeUp 1s .35s both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgb(255, 255, 255);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.75;
  font-weight: 300;
  animation: fadeUp 1s .5s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s .65s both;
}
/* 
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.6);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, rgba(201,169,110,.8), transparent);
} */

/* ── Stats Bar ───────────────────────────────────────────── */
/* .stats-bar {
  background: var(--dark);
  padding: 28px 0;
}

.stat-item {
  text-align: center;
  padding: 8px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(201,169,110,.25);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: 6px;
} */


/* ── Services Cards ──────────────────────────────────────── */

.services-list {
    padding-top: 50px;
}
.more-services{
   padding-bottom: 50px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  transition: var(--trans);
  height: 100%;
  border: 1px solid var(--border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26,26,46,.16);
}

.service-card-img {
  overflow: hidden;
  height: 220px;
}

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

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

.service-card-body {
  padding: 26px 28px 30px;
}

.service-icon {
      width: 46px;
    height: 46px;
    background: #d5d5d5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7d090a;
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: var(--trans);
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}

.service-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: .88rem;
  color: var(--slate);
  opacity: .85;
  line-height: 1.7;
}

/* ── About / Team ────────────────────────────────────────── */

.mission-value {
    padding-bottom: 90px;
}
.about-us {
    padding-top: 90px;
}
.team-card{
background:#fff;
border-radius:20px;
box-shadow:0 4px 20px rgba(0,0,0,0.08);
overflow:hidden;
transition:0.3s;
border:1px solid #eee;
}

.team-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}

.team-img{
/* height:350px; */
overflow:hidden;
}

.team-img img{
width:100%;
height:100%;
/* object-fit:cover; */
}

.team-content{
padding:22px;
text-align:left;
}

.team-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}
.team-content p{
font-size:13x;
line-height:1.7;
color:#666;
}

.team-icons{
margin-top:15px;
display:flex;
gap:10px;
}

.team-icons a{
    width: 34px;
    height: 34px;
    background: #dbdbdb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #7f0d0c;
    transition: 0.3s;
}

.team-icons a:hover{
background:#c9a96e;
color:#fff;
}
/* ── Mission Vision ──────────────────────────────────────── */
.mv-card {
  padding: 42px 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  height: 100%;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}

.mv-card:hover {
  box-shadow: 0 12px 40px var(--shadow);
  transform: translateY(-4px);
}

.mv-icon {
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.mv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* ── Blog Cards ──────────────────────────────────────────── */
.blog-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  transition: var(--trans);
  height: 100%;
  border: 1px solid var(--border);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(26,26,46,.14);
}

.blog-card-img {
  height: 230px;
  overflow: hidden;
  position: relative;
}

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

.blog-card:hover .blog-card-img img {
  transform: scale(1.06);
}

.blog-category {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}

.blog-card-body {
  padding: 26px 28px 30px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: .78rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}

.blog-card h5 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.4;
  transition: var(--trans);
}

.blog-card:hover h5 { color: var(--gold); }

.blog-card p {
  font-size: .87rem;
  color: var(--slate);
  opacity: .85;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans);
}

.read-more:hover { gap: 10px; color: var(--dark); }

/* ── Contact ─────────────────────────────────────────────── */

.location-map {
    padding-bottom: 90px;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 10px;
  padding: 48px 44px;
  box-shadow: 0 8px 40px var(--shadow);
  border: 1px solid var(--border);
}

.form-label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: .9rem;
  color: var(--dark);
  background: var(--ivory);
  transition: var(--trans);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,110,.15);
  outline: none;
}

.form-control::placeholder { color: #aaa; }

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

.contact-info-card {
  background: var(--dark);
  border-radius: 10px;
  padding: 42px 38px;
  height: 100%;
  color: rgba(255,255,255,.85);
}

.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.contact-info-card .title-line {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 42px; height: 42px;
  background: rgba(201,169,110,.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-text strong {
  display: block;
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item-text span {
  font-size: .88rem;
  line-height: 1.6;
}

.map-embed {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border);
  margin-top: 40px;
}

/* ── Get In Touch Banner ─────────────────────────────────── */
.get-in-touch {
  background: linear-gradient(135deg, var(--dark) 0%, #2d2d4e 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.get-in-touch::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60vw; height: 60vw;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.08);
  pointer-events: none;
}

.get-in-touch::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -5%;
  width: 40vw; height: 40vw;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.06);
  pointer-events: none;
}

.get-in-touch .section-title { color: var(--white); }
.get-in-touch .section-subtitle { color: rgba(255,255,255,.7); }
.get-in-touch .title-line { background: linear-gradient(90deg, var(--gold), transparent); }
.touch-form{
max-width:450px;
}

.touch-input-line{
width:100%;
background:transparent;
border:none;
border-bottom:1px solid rgba(255,255,255,0.3);
padding:12px 0;
margin-bottom:18px;
color:#fff;
}

.touch-input-line::placeholder{
color:rgba(255,255,255,0.6);
}

.touch-input-line:focus{
outline:none;
border-bottom:1px solid var(--gold);
}

.phone-group-line{
display:flex;
border-bottom:1px solid rgba(255,255,255,0.3);
margin-bottom:18px;
}

.country-code-line{
background:transparent;
border:none;
color:#fff;
padding:10px 10px 10px 0;
}

.phone-input-line{
background:transparent;
border:none;
flex:1;
color:#fff;
padding:10px;
}

.phone-input-line:focus{
outline:none;
}

.message-input{
min-height:60px;
resize:none;
}

.touch-image img{
max-width:100%;
border-radius:12px;
box-shadow:0 20px 40px rgba(0,0,0,0.4);
}


/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #252545 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: .12;
}

.page-hero-content { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

.breadcrumb-custom a { color: var(--gold); }
.breadcrumb-custom a:hover { color: var(--gold-lt); }
.breadcrumb-sep { color: rgba(255,255,255,.3); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  /* background: var(--dark); */
    padding: 40px 0 40px 0;
  color: rgba(255,255,255,.65);
}

.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub  { color: var(--gold); }

.footer-desc {
  font-size: .89rem;
  margin: 18px 0 24px;
  line-height: 1.75;
  max-width: 280px;
  color: #4a5568;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  border-radius: 6px;
   background: rgb(207 203 203);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(120 7 6);
  font-size: .9rem;
  transition: var(--trans);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer h5 {
    color: #c9a96e;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
    font-weight: 700;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: .89rem;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--trans);
}

.footer-links a:hover {
  color: var(--gold);
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .89rem;
  color: #4a5568;
}

.footer-contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    line-height: 0;
}

.footer-bottom {
    border-top: 1px solid rgb(127 1 0);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
}

.footer-bottom strong {
    font-size: 16px;
    color: #4a5568;
    font-weight: 600;
}

.footer-bottom strong a {
    color: var(--gold);
    font-size: 16px;
}


/* ------------popup modal--------- */
.form-control{
color:#000;
}

.form-control::placeholder{
color:#000;
opacity:1;
}
.modal-dialog{
max-width:850px;
}
select.form-control{
color:#000;
}
.popup-image{
background: linear-gradient(135deg,#e7c88c,#c9a96e);
color:#333;
}
.form-label{
font-size:14px;
font-weight:600;
margin-bottom:5px;
}

.popup-image{
background: linear-gradient(135deg,#e7c88c,#c9a96e);
color:#333;
}
.modal-content{
border:2px solid #c9a96e;
border-radius:15px;
}

.popup-design textarea.form-control {
    min-height: auto;
}
.popup-design{
border-radius:15px;
box-shadow:0 20px 60px rgba(0,0,0,0.2);
animation: popupFade 0.6s ease;
}

@keyframes popupFade{
from{
transform:scale(0.8);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}

.popup-image p {
    color: #000000cc;
}
.popup-image{
    background: linear-gradient(135deg, #efd7af, #c9a96e);
color:white;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:40px;
}

.popup-image h3{
font-weight:700;
margin-bottom:10px;
}

.popup-title{
font-weight:600;
}

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 2px solid #c9a96e;
    color: #000000;
}

.form-control:focus{
box-shadow:none;
border-color:#007bff;
}

.popup-submit{
background: linear-gradient(135deg,#d19b43,#c9a96e);
border:none;
padding:12px;
color:#ffffff;
font-weight:600;
border-radius:8px;
transition:0.3s;
}

.popup-submit:hover{
background:#D9B94F;
transform:translateY(-2px);
}


/* about us  */

.team-role {
    font-size: .75rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 6px;
}

.highlight-gold{
color:#c9a96e;
font-weight:600;
}
.about-text{
font-size:0.95rem;
opacity:0.87;
line-height:1.85;
margin-bottom:20px;
}
.about-stat-box{
padding:18px;
background:#e5e3de;
border-radius:6px;
border-left:3px solid var(--gold);
}

.about-stat-number{
font-family:'Playfair Display', serif;
font-size:1.8rem;
font-weight:700;
color:var(--dark);
}

.about-stat-plus{
color:var(--gold);
}

.about-stat-text{
font-size:0.8rem;
text-transform:uppercase;
letter-spacing:0.1em;
color:var(--slate);
opacity:0.8;
margin-top:4px;
}

/* ── Divider / Ornament ──────────────────────────────────── */
.ornament {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 8px 0 32px;
}

.ornament-line {
  width: 60px; 
  height: 1px;
  background: var(--border);
}

.ornament-diamond {
  width: 8px; height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── Why Choose Us ───────────────────────────────────────── */
.feature-item {
  display: flex;
  gap: 18px;
  margin-bottom: 20px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #d5d5d5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #800000;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--trans);
}

.feature-item:hover .feature-icon {
  background: var(--gold);
  color: var(--white);
}

.feature-text h5 { font-size: 1rem; margin-bottom: 6px; }
.feature-text p  { font-size: .87rem; opacity: .82; margin: 0; }

/* ── Image Mosaic ────────────────────────────────────────── */
.img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
  border-radius: 10px;
  overflow: hidden;
}

.img-mosaic-main {
  grid-row: 1 / 3;
  overflow: hidden;
}

.img-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.img-mosaic img:hover { transform: scale(1.05); }

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .section-pad { padding: 65px 0; }
  .contact-form-wrapper { padding: 34px 28px; }
  .contact-info-card { padding: 34px 28px; margin-top: 28px; }
  .stat-item + .stat-item::before { display: none; }
}

@media (max-width: 767px) {
  .section-pad { padding: 52px 0; }
  .hero-title  { font-size: 2.4rem; }
  .img-mosaic  { grid-template-columns: 1fr; grid-template-rows: 200px 160px 160px; }
  .img-mosaic-main { grid-row: auto; }
  .contact-form-wrapper { padding: 28px 20px; }
  .get-in-touch { padding: 60px 0; }
  .page-hero { padding: 110px 0 60px; }
  
.touch-form {
    max-width: 100%;
}
}
@media (max-width: 480px) {
  body.modal-open {
    padding-right: 0 !important;
}

  }