/* ============================================================
   PARADISE INTERIOR — Main Stylesheet
   Brand: #F4A62A (orange) | #333333 (text) | #F7F7F7 (bg)
   Fonts: Playfair Display (headings) + DM Sans (body)
   ============================================================ */

/* ---- Design Tokens ---- */
:root {
  --orange:       #F4A62A;
  --orange-dark:  #d4890f;
  --orange-light: #FFF4E0;
  --dark:         #111111;
  --dark-2:       #1a1a1a;
  --text:         #333333;
  --text-muted:   #777777;
  --bg:           #F7F7F7;
  --white:        #ffffff;
  --border:       #E8E8E8;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-hover: 0 14px 44px rgba(0,0,0,0.13);
  --radius:       4px;
  --transition:   all 0.32s ease;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Segoe UI', sans-serif;
}

/* ---- Base Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.22;
  color: var(--dark);
}

/* ---- Utility ---- */
.section-py   { padding: 100px 0; }
.section-py-sm{ padding: 70px 0; }
.bg-gray      { background: var(--bg); }
.bg-dark-sec  { background: var(--dark-2); }
.text-orange  { color: var(--orange) !important; }
.fw-600       { font-weight: 600; }

/* ---- Section Title ---- */
.section-title { margin-bottom: 56px; }
.section-title .label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
.section-title p { color: var(--text-muted); max-width: 560px; margin-top: 12px; font-size: 0.96rem; }
.section-title.text-center p { margin-left: auto; margin-right: auto; }
.title-line {
  width: 48px; height: 3px;
  background: var(--orange);
  margin-top: 16px;
}
.text-center .title-line { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn-orange {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--orange); color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  transition: var(--transition); cursor: pointer;
}
.btn-orange:hover {
  background: var(--orange-dark); border-color: var(--orange-dark);
  color: var(--white); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244,166,42,0.32);
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  background: transparent; color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.55);
  border-radius: var(--radius); transition: var(--transition);
}
.btn-outline-white:hover { background: var(--white); color: var(--dark); border-color: var(--white); }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  background: transparent; color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid var(--dark);
  border-radius: var(--radius); transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--white); color: var(--orange);
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid var(--white);
  border-radius: var(--radius); transition: var(--transition);
}
.btn-white:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ---- Navbar ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.38s ease;
}
#navbar.transparent { background: transparent; }
#navbar.scrolled {
  background: var(--white);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
#navbar .navbar-brand img { height: 50px; width: auto; }
#navbar .nav-link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 6px 14px !important;
  position: relative;
  transition: color 0.3s;
}
#navbar.transparent .nav-link       { color: rgba(255,255,255,0.82); }
#navbar.transparent .nav-link:hover,
#navbar.transparent .nav-link.active{ color: var(--orange); }
#navbar.scrolled .nav-link          { color: var(--text); }
#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active   { color: var(--orange); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s; transform-origin: center;
}
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }
#navbar.transparent .navbar-toggler { border-color: rgba(255,255,255,0.4); }
#navbar.transparent .navbar-toggler-icon { filter: invert(1); }
.nav-btn-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 22px !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: var(--radius);
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.09em !important;
}
.nav-btn-cta:hover { background: var(--orange-dark) !important; transform: translateY(-1px); }
.nav-btn-cta::after { display: none !important; }

/* ---- Hero Slider ---- */
.hero-section { position: relative; height: 100vh; min-height: 620px; }
.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-swiper { height: 100% !important; }
.hero-slide {
  position: relative;
  height: 100vh; min-height: 620px;
  display: flex; align-items: center;
}
.hero-slide .slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-slide .slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.3) 100%);
}
.hero-slide .slide-content {
  position: relative; z-index: 2;
  padding-top: 70px; max-width: 680px;
}
.hero-label {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--orange);
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  margin-bottom: 22px;
}
.hero-slide h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  color: var(--white); line-height: 1.1;
  margin-bottom: 22px;
}
.hero-slide .hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem; margin-bottom: 40px;
  max-width: 500px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
/* Swiper pagination & nav */
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  width: 50px; height: 50px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  transition: var(--transition);
}
.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover { background: var(--orange); border-color: var(--orange); }
.hero-section .swiper-button-next::after,
.hero-section .swiper-button-prev::after { font-size: 0.85rem; color: var(--white); font-weight: 900; }
.hero-section .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.45); opacity: 1;
  transition: all 0.3s;
}
.hero-section .swiper-pagination-bullet-active {
  background: var(--orange); width: 28px; border-radius: 4px;
}

/* ---- Filter Pills ---- */
.filter-wrap { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.filter-btn {
  padding: 8px 22px;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 2px solid var(--border);
  background: transparent; color: var(--text-muted);
  border-radius: 50px; cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ---- Project Cards ---- */
.project-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  transition: var(--transition);
  text-decoration: none !important;
  display: block;
}
.project-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.13); }
.project-card .pc-img {
  position: relative; overflow: hidden;
}
.project-card .pc-img img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.55s ease; display: block; }
.project-card:hover .pc-img img { transform: scale(1.07); }
.project-card .pc-hover {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.42);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.32s;
}
.project-card:hover .pc-hover { opacity: 1; }
.project-card .pc-hover span {
  color: var(--white); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.7);
  padding: 9px 22px; border-radius: 50px;
  transition: background 0.25s, border-color 0.25s;
}
.project-card:hover .pc-hover span { background: var(--orange); border-color: var(--orange); }
.project-card .pc-body { padding: 16px 20px 18px; }
.project-card .card-cat {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); display: block; margin-bottom: 5px;
}
.project-card .card-title {
  color: var(--dark); font-size: 1rem; font-weight: 600;
  margin: 0; font-family: var(--font-head); line-height: 1.35;
  transition: color 0.25s;
}
.project-card:hover .card-title { color: var(--orange); }

/* ---- Service Cards ---- */
.service-card {
  background: var(--white); padding: 40px 32px;
  border-radius: var(--radius); border: 1px solid var(--border);
  height: 100%; position: relative; overflow: hidden;
  transition: var(--transition);
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-6px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-card .svc-icon { font-size: 2.4rem; color: var(--orange); margin-bottom: 22px; display: block; }
.service-card h4 { font-size: 1.22rem; margin-bottom: 12px; }
.service-card p { color: var(--text-muted); font-size: 0.91rem; margin-bottom: 0; line-height: 1.8; }
.service-card .svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-size: 0.76rem;
  font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 20px;
  transition: gap 0.3s;
}
.service-card:hover .svc-link { gap: 10px; }

/* ---- About Section ---- */
.about-img-wrap { position: relative; padding-bottom: 44px; padding-right: 44px; }
.about-img-wrap img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); display: block; }
.exp-badge {
  position: absolute; bottom: 0; right: 0;
  background: var(--orange); color: var(--white);
  padding: 28px 30px; border-radius: var(--radius); text-align: center;
  min-width: 130px;
}
.exp-badge .num { display: block; font-family: var(--font-head); font-size: 3rem; font-weight: 700; line-height: 1; }
.exp-badge .lbl { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.88; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 32px 0; }
.stat-box { padding: 24px 20px; background: var(--bg); border-radius: var(--radius); border-left: 3px solid var(--orange); }
.stat-box .count { font-family: var(--font-head); font-size: 2.1rem; font-weight: 700; color: var(--orange); line-height: 1; }
.stat-box .slbl { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-top: 5px; }

/* ---- Process / How We Work ---- */
.process-section { background: var(--dark); }
.process-section .section-title .label { color: var(--orange); }
.process-section .section-title h2 { color: var(--white); }
.process-grid { position: relative; }
.process-grid::before {
  content: '';
  position: absolute; top: 27px; left: 8%; right: 8%; height: 1px;
  background: rgba(255,255,255,0.07); z-index: 0;
}
.p-step { flex: 1; padding: 0 12px; position: relative; z-index: 1; text-align: center; }
.p-step-circle {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 2px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-head); font-size: 0.95rem;
  color: rgba(255,255,255,0.35); font-weight: 700;
  transition: var(--transition);
}
.p-step:hover .p-step-circle { background: var(--orange); border-color: var(--orange); color: var(--white); }
.p-step-icon { font-size: 1.4rem; color: rgba(255,255,255,0.4); margin-bottom: 10px; display: block; transition: color 0.3s; }
.p-step:hover .p-step-icon { color: var(--orange); }
.p-step-num { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; color: var(--orange); display: block; margin-bottom: 8px; }
.p-step h5 { color: var(--white); font-size: 0.96rem; margin-bottom: 8px; }
.p-step p { color: rgba(255,255,255,0.38); font-size: 0.84rem; line-height: 1.65; }

/* ---- Testimonial Cards ---- */
.testimonial-card {
  background: var(--white); padding: 36px 30px;
  border-radius: var(--radius); box-shadow: var(--shadow);
  height: 100%; border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.testimonial-card:hover { border-bottom-color: var(--orange); transform: translateY(-4px); }
.t-quote { font-size: 3rem; color: var(--orange-light); line-height: 0.8; font-family: Georgia, serif; margin-bottom: 12px; }
.t-stars { color: var(--orange); font-size: 0.78rem; margin-bottom: 14px; }
.testimonial-card .t-text { color: var(--text-muted); font-size: 0.93rem; line-height: 1.82; font-style: italic; margin-bottom: 22px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--orange); }
.t-author-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--orange); display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.t-author-info h6 { font-size: 0.94rem; color: var(--dark); margin-bottom: 2px; }
.t-author-info small { color: var(--text-muted); font-size: 0.76rem; }

/* ---- Blog Cards ---- */
.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card .img-wrap { overflow: hidden; height: 220px; }
.blog-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .img-wrap img { transform: scale(1.06); }
.blog-card .body { padding: 26px; }
.blog-cat { display: inline-block; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.blog-card h5 { font-size: 1.08rem; line-height: 1.4; margin-bottom: 10px; }
.blog-card h5 a { color: var(--dark); }
.blog-card h5 a:hover { color: var(--orange); }
.blog-meta { display: flex; gap: 14px; font-size: 0.76rem; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta i { color: var(--orange); margin-right: 3px; }
.blog-card .excerpt { color: var(--text-muted); font-size: 0.89rem; line-height: 1.75; }

/* ---- Contact ---- */
.contact-info-box {
  padding: 52px 44px; background: var(--dark);
  color: rgba(255,255,255,0.7); border-radius: var(--radius) 0 0 var(--radius);
  height: 100%;
}
.contact-info-box h3 { color: var(--white); font-size: 1.85rem; margin-bottom: 8px; }
.contact-info-box .sub { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-bottom: 36px; }
.ci-row { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.ci-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(244,166,42,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 0.88rem; flex-shrink: 0; margin-top: 2px;
}
.ci-row h6 { color: rgba(255,255,255,0.45); font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; font-family: var(--font-body); margin-bottom: 3px; }
.ci-row p, .ci-row a { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.ci-social { display: flex; gap: 10px; margin-top: 36px; }
.ci-social a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 0.8rem; transition: var(--transition);
}
.ci-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.contact-form-box {
  padding: 52px 44px; background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow); height: 100%;
}
.contact-form-box h3 { font-size: 1.85rem; margin-bottom: 8px; }
.contact-form-box .sub { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 32px; }
.form-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 13px 16px; font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text); background: var(--bg); transition: var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange); outline: none;
  box-shadow: 0 0 0 3px rgba(244,166,42,0.1); background: var(--white);
}
textarea.form-control { resize: none; }

/* ---- Footer ---- */
footer { background: #0e0e0e; color: rgba(255,255,255,0.55); }
.footer-top { padding: 80px 0 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-logo { height: 50px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-about-text { font-size: 0.89rem; line-height: 1.85; color: rgba(255,255,255,0.42); max-width: 295px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 0.78rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: white; }
.footer-heading {
  font-family: var(--font-head); font-size: 1.1rem; color: var(--white);
  margin-bottom: 22px; padding-bottom: 12px; position: relative;
}
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--orange); }
.footer-nav li { margin-bottom: 9px; }
.footer-nav a {
  color: rgba(255,255,255,0.45); font-size: 0.87rem;
  display: inline-flex; align-items: center; gap: 7px; transition: var(--transition);
}
.footer-nav a i { font-size: 0.55rem; color: var(--orange); }
.footer-nav a:hover { color: var(--orange); padding-left: 4px; }
.f-contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.f-contact-row .fci { color: var(--orange); font-size: 0.82rem; margin-top: 3px; flex-shrink: 0; }
.f-contact-row p, .f-contact-row a { color: rgba(255,255,255,0.45); font-size: 0.87rem; margin: 0; line-height: 1.6; }
.f-contact-row a:hover { color: var(--orange); }
.footer-bottom { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 0.8rem; margin: 0; }
.footer-bottom a { color: var(--orange); }

/* ---- Page Banner ---- */
.page-banner { padding: 155px 0 72px; background: var(--dark); position: relative; overflow: hidden; }
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,166,42,0.07) 0%, transparent 55%);
}
.page-banner .banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.14; }
.page-banner .inner { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); font-size: clamp(1.9rem, 4.5vw, 3rem); margin-bottom: 12px; }
.breadcrumb { background: transparent; padding: 0; margin: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.45); font-size: 0.8rem; }
.breadcrumb-item.active { color: var(--orange); font-size: 0.8rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.25); }

/* ---- Team Cards ---- */
.team-card { text-align: center; }
.team-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius); margin-bottom: 18px; }
.team-img-wrap img { width: 100%; height: 320px; object-fit: cover; transition: transform 0.5s; display: block; }
.team-card:hover .team-img-wrap img { transform: scale(1.04); }
.team-img-wrap .social-ov {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.65);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  opacity: 0; transition: opacity 0.35s;
}
.team-card:hover .team-img-wrap .social-ov { opacity: 1; }
.team-img-wrap .social-ov a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75); font-size: 0.78rem; transition: var(--transition);
}
.team-img-wrap .social-ov a:hover { background: var(--orange); border-color: var(--orange); color: white; }
.team-card h5 { font-size: 1.08rem; margin-bottom: 4px; }
.team-role { color: var(--orange); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---- CTA Banner ---- */
.cta-banner { background: var(--orange); padding: 80px 0; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.5rem); }
.cta-banner p { color: rgba(255,255,255,0.82); margin-bottom: 0; }

/* ---- Sidebar ---- */
.sidebar-widget { background: var(--white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 28px; }
.widget-title { font-size: 1.08rem; color: var(--dark); margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--border); position: relative; }
.widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 32px; height: 2px; background: var(--orange); }
.sidebar-cats li { border-bottom: 1px solid var(--border); }
.sidebar-cats a { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; color: var(--text); font-size: 0.89rem; transition: var(--transition); }
.sidebar-cats a:hover { color: var(--orange); padding-left: 5px; }
.sidebar-cats a i { color: var(--orange); font-size: 0.55rem; }
.sidebar-recent-post { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.sidebar-recent-post:last-child { border: 0; padding-bottom: 0; }
.sidebar-recent-post img { width: 72px; height: 56px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.sidebar-recent-post a { color: var(--text); font-size: 0.87rem; line-height: 1.45; display: block; margin-bottom: 4px; }
.sidebar-recent-post a:hover { color: var(--orange); }
.sidebar-recent-post .date { color: var(--text-muted); font-size: 0.74rem; }
.sidebar-recent-post .date i { color: var(--orange); margin-right: 3px; }
.search-input-group { display: flex; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.search-input-group input { flex: 1; border: none; padding: 11px 14px; font-family: var(--font-body); font-size: 0.9rem; background: var(--bg); outline: none; color: var(--text); }
.search-input-group button { background: var(--orange); border: none; padding: 0 18px; color: white; cursor: pointer; transition: background 0.3s; }
.search-input-group button:hover { background: var(--orange-dark); }

/* ---- Pagination ---- */
.pagination .page-link { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius) !important; font-size: 0.84rem; font-weight: 600; color: var(--text); border-color: var(--border); margin: 0 3px; padding: 0; }
.pagination .page-link:hover { background: var(--orange); border-color: var(--orange); color: white; }
.pagination .page-item.active .page-link { background: var(--orange); border-color: var(--orange); }

/* ---- Alerts ---- */
.alert-success-custom { background: #f0fdf4; border: 1px solid #86efac; color: #166534; border-radius: var(--radius); padding: 16px 20px; }

/* ---- Scroll to Top ---- */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: var(--orange); color: white; border: none;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; cursor: pointer;
  opacity: 0; visibility: hidden; transition: var(--transition);
  z-index: 999; box-shadow: 0 4px 16px rgba(244,166,42,0.4);
}
#scrollTop.show { opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ---- Preloader ---- */
#preloader {
  position: fixed; inset: 0; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.45s;
}
#preloader.hide { opacity: 0; pointer-events: none; }
.pre-spin {
  width: 42px; height: 42px;
  border: 3px solid var(--border); border-top-color: var(--orange);
  border-radius: 50%; animation: spin 0.75s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .section-py { padding: 72px 0; }
  .hero-slide h1 { font-size: 2.4rem; }
  .process-grid { flex-direction: column; gap: 32px; }
  .process-grid::before { display: none; }
  .contact-info-box, .contact-form-box { border-radius: var(--radius); }
  .about-img-wrap img { height: 400px; }
}
@media (max-width: 767px) {
  .section-py { padding: 56px 0; }
  .hero-slide h1 { font-size: 2rem; }
  .contact-info-box, .contact-form-box { padding: 36px 24px; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 14px; }
  .about-img-wrap { padding-bottom: 22px; padding-right: 22px; }
  #navbar .nav-btn-cta { display: none; }
}
@media (max-width: 575px) {
  .hero-btns { flex-direction: column; }
  .hero-btns a { width: fit-content; }
  .about-stats { grid-template-columns: 1fr; }
  .about-img-wrap { padding: 0; }
  .exp-badge { position: static; margin-top: 16px; display: inline-block; }
}

/* ── YouTube Video Cards ──────────────────────────────── */
.yt-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: var(--transition);
}
.yt-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.13); }
.yt-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.yt-thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.yt-card:hover .yt-thumb { transform: scale(1.04); }
.yt-play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
}
.yt-play-btn i { font-size: 3.2rem; color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); transition: transform 0.3s; }
.yt-card:hover .yt-play-btn { background: rgba(0,0,0,0.55); }
.yt-card:hover .yt-play-btn i { transform: scale(1.12); color: #FF0000; }
.yt-info { padding: 14px 16px; }
.yt-info h6 { font-size: 0.88rem; font-weight: 600; color: var(--dark); margin: 0; line-height: 1.4; }
.yt-embed-wrap { position: relative; aspect-ratio: 16/9; }
.yt-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ── Project Gallery (detail page) ───────────────────────── */
.proj-gal-item {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg);
}
.proj-gal-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.proj-gal-item:hover img { transform: scale(1.06); }
.proj-gal-item .gal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: white;
  font-size: 1.4rem;
}
.proj-gal-item:hover .gal-overlay { opacity: 1; }

/* ── Clean Search Input ───────────────────────────────────── */
.search-clean-input {
  width: 100%;
  padding: 16px 24px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: rgba(0, 0, 0, 0.03);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}
.search-clean-input:focus {
  border-color: var(--orange);
  background: rgba(244, 166, 42, 0.03);
}
.search-clean-input::placeholder { color: var(--text-muted); }

/* ── Navbar Search Box — iPhone frosted glass style ──────── */
.nav-search-form {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-search-icon {
  position: absolute;
  left: 11px;
  font-size: 0.72rem;
  color: #8e8e93;
  pointer-events: none;
  z-index: 1;
  transition: color 0.2s;
}
.nav-search-input {
  padding: 7px 16px 7px 30px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #1c1c1e;
  background: rgba(118, 118, 128, 0.12);
  border: none;
  border-radius: 50px;
  outline: none;
  width: 158px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: width 0.35s cubic-bezier(.4,0,.2,1), background 0.25s, box-shadow 0.25s;
}
.nav-search-input:focus {
  width: 210px;
  background: rgba(118, 118, 128, 0.18);
  box-shadow: 0 0 0 3px rgba(244,166,42,0.18);
}
.nav-search-form:focus-within .nav-search-icon { color: var(--orange); }
.nav-search-input::placeholder { color: #8e8e93; font-size: 0.8rem; }

/* transparent navbar (over hero) — brighter glass */
#navbar.transparent .nav-search-input {
  background: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
#navbar.transparent .nav-search-input::placeholder { color: rgba(255,255,255,0.6); }
#navbar.transparent .nav-search-icon { color: rgba(255,255,255,0.65); }
#navbar.transparent .nav-search-input:focus {
  background: rgba(255,255,255,0.26);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
#navbar.transparent .nav-search-form:focus-within .nav-search-icon { color: #fff; }

/* ── Search Autocomplete Dropdown ────────────────────────── */
.nav-search-drop {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  z-index: 999;
  min-width: 300px;
}
.nav-search-drop.open { display: block; }
.sac-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  text-decoration: none;
  transition: background 0.15s;
  border-bottom: 1px solid #f8f8f8;
}
.sac-item:last-child { border-bottom: none; }
.sac-item:hover { background: #fff7ed; }
.sac-img {
  width: 46px;
  height: 32px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.sac-img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  color: #cbd5e1;
  font-size: 0.8rem;
}
.sac-info {
  flex: 1;
  min-width: 0;
}
.sac-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sac-sub {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  margin-top: 1px;
}
.sac-type {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #F4A62A;
  background: #fff7ed;
  padding: 2px 7px;
  border-radius: 50px;
  flex-shrink: 0;
}
