/* ============================================
   ALADDIN PRO - Modern Design Override
   ============================================ */

/* --- CSS Variables --- */
:root {
  --gold: #b49132;
  --gold-light: #d4ab3e;
  --gold-dark: #8a6f26;
  --navy: #1a1f36;
  --navy-light: #2d3352;
  --dark: #0f1118;
  --text-primary: #1a1f36;
  --text-secondary: #5a6072;
  --text-muted: #8b90a0;
  --bg-light: #f8f9fc;
  --bg-white: #ffffff;
  --border-light: #e8eaf0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Global --- */
* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-secondary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
}

p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
}

a {
  transition: var(--transition);
}

::selection {
  background: var(--gold);
  color: #fff;
}

/* --- Section Headers --- */
.section-header h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  text-transform: none;
}

.section-header h2:after {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-top: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  padding-top: 24px;
  max-width: 560px;
}

/* ============================================
   CREATIVE NAVIGATION
   ============================================ */

/* --- Top Bar --- */
.header-top {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-bottom: 2px solid var(--gold);
}

.header-top .top-nav li a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0.9;
  transition: var(--transition);
}

.header-top .top-nav li a:hover {
  opacity: 1;
  background: none;
}

.header-top .top-nav li a i {
  color: var(--gold-light);
}

.header-top .search {
  color: var(--gold-light);
  opacity: 0.8;
  transform: none;
  transition: var(--transition);
}

.header-top .search:hover {
  opacity: 1;
  color: #fff;
}

/* --- Main Navigation --- */
.header-bottom .navbar-default {
  background: var(--bg-white);
  transition: var(--transition);
  border-bottom: none;
  padding: 0;
}

.header-bottom .navbar-default .navbar-brand {
  padding: 5px 15px 5px 0;
  height: auto;
}

.header-bottom .navbar-default .navbar-brand .logo {
  max-height: none;
  width: 110px;
  margin-top: 0;
  display: block;
}

.header-bottom .navbar-default .navbar-nav {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.header-bottom .navbar-default .navbar-nav > li {
  position: relative;
}

.header-bottom .navbar-default .navbar-nav > li > a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--navy);
  line-height: 120px;
  padding: 0 !important;
  position: relative;
  transition: var(--transition);
  background: none !important;
  box-shadow: none !important;
}

/* Animated underline - slides in from center */
.header-bottom .navbar-default .navbar-nav > li > a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
}

.header-bottom .navbar-default .navbar-nav > li > a:hover {
  color: var(--gold) !important;
  background: none !important;
}

.header-bottom .navbar-default .navbar-nav > li > a:hover:before {
  width: 100%;
}

/* Active nav item */
.header-bottom .navbar-default .navbar-nav > li.active > a {
  color: var(--gold) !important;
  font-weight: 700;
  background: none !important;
  box-shadow: none !important;
}

.header-bottom .navbar-default .navbar-nav > li.active > a:before {
  width: 100%;
  opacity: 1;
}

/* Nav spacing */
.header-bottom .navbar-default .navbar-nav > li + li {
  padding-left: 10px;
  margin-left: 6px;
}

/* CTA button in nav */
.header-bottom .navbar-default .navbar-nav > li.nav-cta {
  margin-left: 16px !important;
  padding-left: 0 !important;
  padding-top: 41px;
}

.header-bottom .navbar-default .navbar-nav > li.nav-cta > a {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: #fff !important;
  padding: 11px 28px !important;
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1.5px;
  line-height: 1.4;
  box-shadow: 0 4px 15px rgba(180, 145, 50, 0.3) !important;
  transition: var(--transition);
}

.header-bottom .navbar-default .navbar-nav > li.nav-cta > a:before {
  display: none !important;
}

.header-bottom .navbar-default .navbar-nav > li.nav-cta > a:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(180, 145, 50, 0.45) !important;
  color: #fff !important;
}

/* --- Sticky nav --- */
.header-bottom.affix {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  z-index: 9999;
  border-bottom: none;
}

.header-bottom.affix .navbar-default {
  border-bottom: none;
}

.header-bottom.affix .navbar-default .navbar-nav > li > a {
  line-height: 80px;
  padding: 0 !important;
}

.header-bottom.affix .navbar-default .navbar-nav > li > a:before {
  bottom: 8px;
}

.header-bottom.affix .navbar-default .navbar-nav > li.nav-cta {
  padding-top: 21px;
}

.header-bottom.affix .navbar-default .navbar-nav > li.nav-cta > a {
  padding: 10px 26px !important;
}

.header-bottom.affix .navbar-default .navbar-brand .logo {
  width: 70px;
}

/* --- Mobile nav --- */
@media (max-width: 767px) {
  .header-bottom .navbar-default .navbar-nav {
    padding: 15px 0 !important;
    margin: 0;
  }

  .header-bottom .navbar-default .navbar-nav > li {
    float: none;
    border-bottom: 1px solid var(--border-light);
  }

  .header-bottom .navbar-default .navbar-nav > li:last-child {
    border-bottom: none;
  }

  .header-bottom .navbar-default .navbar-nav > li > a {
    padding: 12px 20px !important;
    font-size: 13px;
  }

  .header-bottom .navbar-default .navbar-nav > li > a:before {
    display: none !important;
  }

  .header-bottom .navbar-default .navbar-nav > li + li {
    padding-left: 0;
    margin-left: 0;
  }

  .header-bottom .navbar-default .navbar-nav > li.nav-cta {
    margin-left: 0 !important;
    padding: 10px 15px 5px;
  }

  .header-bottom .navbar-default .navbar-nav > li.nav-cta > a {
    display: inline-block;
    border-radius: 50px;
    padding: 12px 30px !important;
  }

  .header-bottom .navbar-default .navbar-nav > li.active > a {
    border-left: 3px solid var(--gold);
    padding-left: 17px !important;
  }

  .header-bottom .navbar-default .navbar-header {
    position: relative;
  }

  .navbar-default .navbar-toggle {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    margin-top: 0;
    margin-right: 0;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border: 0;
    box-shadow: none;
  }

  .navbar-default .navbar-toggle:hover,
  .navbar-default .navbar-toggle:focus {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
  }

  .navbar-default .navbar-toggle .icon-bar {
    background: #fff;
  }

  .navbar-default .navbar-collapse {
    border: 0;
    box-shadow: var(--shadow-md);
  }
}

/* ============================================
   SLIDER / HERO
   ============================================ */
.slider-area {
  position: relative;
}

.slider-area .item {
  position: relative;
  overflow: hidden;
}

.slider-area .slider-img img {
  border-bottom: none;
  box-shadow: none;
  filter: brightness(0.55) contrast(1.1);
  transition: transform 8s ease;
  transform: scale(1.05);
}

.slider-area .item:hover .slider-img img {
  transform: scale(1.12);
}

.slider-area .s-content {
  z-index: 2;
}

.slider-area .s-content h3 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
  line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slider-area .s-content h2 {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 3px;
  line-height: 1.2;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  margin-top: 8px;
}

.slider-area .s-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 560px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}

/* ============================================
   BUTTONS
   ============================================ */
.button,
.btn.button {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: auto;
  min-width: 200px;
  height: auto;
  padding: 16px 36px;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 15px rgba(180, 145, 50, 0.35);
  transform-style: flat;
  transform: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.button:after,
.btn.button:after {
  display: none !important;
}

.button:hover,
.btn.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(180, 145, 50, 0.45);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: #fff;
}

.button:active,
.btn.button:active {
  transform: translateY(0);
}

.button i {
  margin-left: 8px;
  transition: var(--transition);
}

.button:hover i {
  transform: translateX(3px);
}

/* ============================================
   SERVICES
   ============================================ */
.services-area {
  background: var(--bg-light);
  padding-bottom: 0;
}

.service-group {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 60px 30px 50px;
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.service-group-1 {
  transition: var(--transition);
  padding: 20px 15px;
  border-radius: var(--radius-md);
}

.service-group .service-group-1:hover {
  background: var(--bg-light);
  transform: translateY(-4px);
}

.service-group-1:after {
  background: var(--border-light);
  height: 60%;
  top: 20%;
}

.service-group-1:first-child:after {
  display: none;
}

.service-group-1 .content h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
  margin-top: 4px;
}

.service-group-1 .content p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  padding: 16px 20px 12px;
}

.box-i {
  width: 70px;
  height: 70px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  line-height: 66px;
  transition: var(--transition);
  position: relative;
}

.box-i img {
  max-width: 36px;
  max-height: 36px;
}

.service-group-1:hover .box-i {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(180, 145, 50, 0.3);
}

.service-group-1:hover .box-i img {
  filter: brightness(0) invert(1);
}

/* --- Vision & Mission --- */
.services-promo {
  padding-top: 80px;
}

.services-promo .section-header p {
  max-width: 680px;
  font-size: 15px;
}

.services-promo .s-info {
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  transition: var(--transition);
  max-width: 160px;
  height: 160px;
}

.services-promo .s-info:hover {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 8px 30px rgba(180, 145, 50, 0.3);
  transform: translateY(-4px);
}

.services-promo .s-info span {
  font-size: 44px;
  line-height: 160px;
  transition: var(--transition);
}

.services-promo .s-info:hover span {
  color: #fff;
}

.services-promo .s-info-text h4 {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================
   ABOUT US
   ============================================ */
.about-us-area {
  padding: 100px 0;
}

.about-us-area:after {
  background: var(--bg-white);
  opacity: 0.97;
}

.about-us-area .a-text {
  padding-top: 80px !important;
}

.about-us-area .a-text .section-header {
  text-align: left;
}

.about-us-area .a-text .section-header h2:after {
  left: 0;
  transform: none;
}

.about-us-area .a-text .section-header p {
  color: var(--text-secondary);
  font-size: 16px;
  padding-top: 30px;
  padding-bottom: 30px;
  margin: 0;
}

.about-us-area .img-responsive {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

/* ============================================
   CTA BANNER
   ============================================ */
.call-action-baner-area {
  background-attachment: fixed;
}

.call-action-baner-area:after {
  background: linear-gradient(135deg, rgba(26,31,54,0.88) 0%, rgba(15,17,24,0.92) 100%);
  opacity: 1;
}

.call-action-baner-area .baner-content {
  padding: 120px 0px 100px;
}

.call-action-baner-area .baner-content h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.call-action-baner-area .baner-content span {
  color: var(--gold-light);
  font-weight: 800;
}

.call-action-baner-area .baner-content p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
  padding: 20px 0 40px;
}

/* ============================================
   VALUES
   ============================================ */
.why-choose-us-area {
  padding: 100px 0 120px;
  background: var(--bg-light);
}

.why-choose-us-area:after {
  opacity: 0.04;
}

.why-choose-us-area .section-header {
  margin-bottom: 60px;
}

.why-choose-us-area .service-group-1 {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center !important;
}

.why-choose-us-area .service-group-1:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.why-choose-us-area .service-group-1 + .service-group-1 {
  margin-top: 24px;
}

.why-choose-us-area .service-group-1 .box-i {
  margin: 0 auto !important;
}

.why-choose-us-area .service-group-1 .content h2 {
  font-size: 18px;
  margin-top: 4px;
}

.why-choose-us-area .service-group-1 p {
  padding: 12px 0 0 0;
  text-align: center;
}

/* ============================================
   TEAM
   ============================================ */
.team-area {
  padding: 100px 0 80px;
  background: var(--bg-white);
}

.team-area .section-header p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-area {
  background: linear-gradient(180deg, var(--dark) 0%, #080a10 100%);
}

.footer-area .footer-top {
  padding: 70px 0 60px;
}

.footer-area .widget .tittle {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 28px;
}

.footer-area .widget .tittle:after {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 30px;
  height: 2px;
  margin-top: 12px;
}

.about-widget p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}

.about-widget .brand-logo {
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: 2px;
  color: #fff !important;
}

.explor-widget .nav li a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: var(--transition);
}

.explor-widget .nav li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
  background: none;
}

.explor-widget .nav.right {
  border-left-color: rgba(255,255,255,0.1);
}

.recent-widget p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.recent-widget p strong {
  color: rgba(255,255,255,0.8);
}

.recent-widget p a,
.recent-widget a {
  color: var(--gold-light);
  transition: var(--transition);
}

.recent-widget p a:hover,
.recent-widget a:hover {
  color: var(--gold);
}

.contact-widget .search-form .form-control {
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 14px;
  height: 48px;
}

.contact-widget .search-form .form-control + .input-group-addon button {
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 4px 16px 0;
}

.footer-bottom {
  border-top-color: rgba(255,255,255,0.08);
  font-size: 13px;
  padding: 24px 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

.footer-bottom .footer-b-r ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  letter-spacing: 0.3px;
}

.footer-bottom .footer-b-r ul li a:hover {
  color: var(--gold-light);
  background: none;
}

/* ============================================
   CONTACT PAGE - HERO
   ============================================ */
.contact-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1020 60%, var(--navy-light) 100%);
  padding: 120px 0 100px;
  overflow: hidden;
  text-align: center;
}

.contact-hero-overlay {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(180,145,50,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(180,145,50,0.15);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.contact-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.contact-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE - INFO CARDS
   ============================================ */
.contact-cards-section {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}

.contact-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 40px 30px 35px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 12px 12px 0 0;
  opacity: 0;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.contact-card:hover:before {
  opacity: 1;
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(180,145,50,0.1) 0%, rgba(180,145,50,0.05) 100%);
  text-align: center;
  line-height: 70px;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.contact-card-icon i {
  font-size: 32px;
  color: var(--gold);
  transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 4px 15px rgba(180, 145, 50, 0.3);
}

.contact-card:hover .contact-card-icon i {
  color: #fff;
}

.contact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.contact-card p a {
  color: var(--navy);
  font-weight: 600;
  transition: var(--transition);
}

.contact-card p a:hover {
  color: var(--gold);
}

.contact-card-detail {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   CONTACT PAGE - FORM SECTION
   ============================================ */
.contact-form-section {
  padding: 0 0 100px;
}

.contact-left {
  padding-right: 40px;
}

.contact-left-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-left h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-left-info-item {
  margin-bottom: 16px;
  overflow: hidden;
}

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

.contact-left-info-item i {
  font-size: 22px;
  color: var(--gold);
  float: left;
  margin-right: 14px;
  line-height: 24px;
}

.contact-left-info-item span {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  display: block;
  overflow: hidden;
  line-height: 24px;
}

/* --- Form Card --- */
.contact-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 48px 40px;
  position: relative;
}

.contact-form-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 0 0 4px 4px;
}

.contact-pro-form .form-field {
  margin-bottom: 24px;
}

.contact-pro-form .form-field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.contact-pro-form .form-field input,
.contact-pro-form .form-field textarea {
  width: 100%;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-light);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  outline: none;
  transition: var(--transition);
}

.contact-pro-form .form-field input:focus,
.contact-pro-form .form-field textarea:focus {
  border-color: var(--gold);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(180, 145, 50, 0.08);
}

.contact-pro-form .form-field input::placeholder,
.contact-pro-form .form-field textarea::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.contact-pro-form .form-field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-submit-btn {
  width: 100%;
  text-align: center;
  padding: 16px 36px !important;
  border-radius: var(--radius-sm) !important;
  font-size: 13px !important;
  margin-top: 8px;
}

.contact-submit-btn i {
  font-size: 18px;
  vertical-align: middle;
  margin-left: 8px;
}

/* ============================================
   PRELOADER
   ============================================ */
.sampleContainer {
  background: var(--bg-white);
}

.dot_1 {
  background: var(--gold) !important;
}

/* ============================================
   MISC
   ============================================ */
img {
  max-width: 100%;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .section-header h2 {
    font-size: 30px;
  }

  .service-group {
    margin-top: 0;
    border-radius: var(--radius-md);
  }

  .slider-area .s-content h2 {
    font-size: 40px;
  }

  .slider-area .s-content h3 {
    font-size: 18px;
  }

  .call-action-baner-area .baner-content h2 {
    font-size: 30px;
  }

  .about-us-area .a-text {
    padding-top: 50px !important;
  }

  .why-choose-us-area .service-group-1 {
    margin-bottom: 16px;
  }

  .contact-hero h1 {
    font-size: 36px;
  }

  .contact-left {
    padding-right: 15px;
    margin-bottom: 40px;
  }

  .contact-left h2 {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .section-header h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .slider-area .s-content h2 {
    font-size: 30px;
    line-height: 1.2;
  }

  .slider-area .s-content p {
    font-size: 15px;
    padding: 10px 15px 0;
  }

  .service-group {
    padding: 40px 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
  }

  .call-action-baner-area .baner-content {
    padding: 80px 20px 70px;
  }

  .call-action-baner-area .baner-content h2 {
    font-size: 24px;
  }

  .why-choose-us-area {
    padding: 60px 0 80px;
  }

  .about-us-area .a-text .section-header {
    text-align: center;
  }

  .about-us-area .a-text .section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-area .footer-top {
    padding: 50px 0 40px;
  }

  .button,
  .btn.button {
    min-width: 170px;
    padding: 14px 28px;
    font-size: 12px;
  }

  /* Contact page responsive */
  .contact-hero {
    padding: 80px 0 80px;
  }

  .contact-hero h1 {
    font-size: 30px;
  }

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

  .contact-cards-section {
    margin-top: -40px;
    margin-bottom: 50px;
  }

  .contact-card {
    margin-bottom: 20px;
    padding: 30px 24px 28px;
  }

  .contact-form-card {
    padding: 30px 24px;
  }

  .contact-form-section {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .slider-area .s-content h2 {
    font-size: 24px;
    letter-spacing: 1px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .call-action-baner-area .baner-content h2 {
    font-size: 20px;
  }

  .service-group {
    padding: 30px 15px 20px;
  }

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

  .contact-left h2 {
    font-size: 22px;
  }

  .contact-form-card {
    padding: 24px 18px;
  }
}
