/**
* Maather — Ranco Village Branding
* Redesigned 2024
*/

:root {
  --navy: #1a2332;
  --navy-light: #243044;
  --navy-deep: #0e1620;
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --gold-pale: #f5eed8;
  --cream: #faf7f0;
  --text: #3a3a3a;
  --text-light: #6b6b6b;
  --white: #ffffff;
}

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', 'Raleway', serif;
}

/*--------------------------------------------------------------
# Back to top
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 0;
  transition: all 0.4s;
}
.back-to-top i { font-size: 22px; color: var(--navy); line-height: 0; }
.back-to-top:hover { background: var(--gold-light); }
.back-to-top.active { visibility: visible; opacity: 1; }

@media screen and (max-width: 768px) {
  [data-aos-delay] { transition-delay: 0 !important; }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 14px 0;
  background: rgba(26, 35, 50, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
#header.header-transparent {
  background: rgba(26, 35, 50, 0.85);
  backdrop-filter: blur(12px);
}
#header.header-scrolled {
  background: rgba(26, 35, 50, 0.98);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
#header .logo h1 {
  font-size: 28px;
  margin: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
}
#header .logo h1 a,
#header .logo h1 a:hover { color: var(--gold); text-decoration: none; }
#header .logo img { margin: 0; max-height: 44px; }

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar { padding: 0; }
.navbar ul {
  margin: 0; padding: 0;
  display: flex; list-style: none; align-items: center;
}
.navbar li { position: relative; }
.navbar a,
.navbar a:focus {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.navbar a i, .navbar a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; }
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a { color: var(--gold); }

.navbar .getstarted,
.navbar .getstarted:focus {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 24px;
  margin-left: 30px;
  line-height: 1;
  border-radius: 0;
  font-weight: 700;
}
.navbar .getstarted:hover,
.navbar .getstarted:focus:hover { background: var(--gold-light); color: var(--navy); }

.navbar .dropdown ul {
  display: block; position: absolute; left: 14px;
  top: calc(100% + 30px);
  margin: 0; padding: 10px 0; z-index: 99;
  opacity: 0; visibility: hidden;
  background: var(--navy);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: 0.3s;
  border: 1px solid rgba(201,168,76,0.15);
}
.navbar .dropdown ul li { min-width: 200px; }
.navbar .dropdown ul a {
  padding: 10px 20px; font-size: 13px;
  text-transform: none; font-weight: 500; color: rgba(255,255,255,0.7);
}
.navbar .dropdown ul a i { font-size: 12px; }
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a { color: var(--gold); }
.navbar .dropdown:hover > ul { opacity: 1; top: 100%; visibility: visible; }
.navbar .dropdown .dropdown ul { top: 0; left: calc(100% - 30px); visibility: hidden; }
.navbar .dropdown .dropdown:hover > ul { opacity: 1; top: 0; left: 100%; visibility: visible; }

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul { left: -90%; }
  .navbar .dropdown .dropdown:hover > ul { left: -100%; }
}

/* Mobile Nav */
.mobile-nav-toggle {
  color: var(--gold); font-size: 28px; cursor: pointer;
  display: none; line-height: 0; transition: 0.5s;
}
.mobile-nav-toggle.bi-x { color: var(--gold); }

@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul { display: none; }
}

.navbar-mobile {
  position: fixed; overflow: hidden;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(14, 22, 32, 0.97);
  transition: 0.3s; z-index: 999;
}
.navbar-mobile .mobile-nav-toggle { position: absolute; top: 15px; right: 15px; }
.navbar-mobile ul {
  display: block; position: absolute;
  top: 55px; right: 15px; bottom: 15px; left: 15px;
  padding: 10px 0; background: var(--navy);
  overflow-y: auto; transition: 0.3s;
  border: 1px solid rgba(201,168,76,0.2);
}
.navbar-mobile a,
.navbar-mobile a:focus { padding: 12px 20px; font-size: 14px; color: rgba(255,255,255,0.7); }
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a { color: var(--gold); }
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus { margin: 15px; }
.navbar-mobile .dropdown ul {
  position: static; display: none; margin: 10px 20px; padding: 10px 0;
  z-index: 99; opacity: 1; visibility: visible;
  background: rgba(255,255,255,0.05);
  box-shadow: none;
}
.navbar-mobile .dropdown ul li { min-width: 200px; }
.navbar-mobile .dropdown ul a { padding: 10px 20px; }
.navbar-mobile .dropdown ul a i { font-size: 12px; }
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a { color: var(--gold); }
.navbar-mobile .dropdown > .dropdown-active { display: block; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px 0;
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#hero::before {
  content: "";
  position: absolute;
  right: 0; top: 0;
  width: 55%; height: 100%;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, rgba(201,168,76,0.1) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--white), transparent);
  z-index: 1;
}

#hero .container { position: relative; z-index: 2; }

#hero h1 {
  margin: 0 0 16px 0;
  font-size: 62px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
}

#hero h1 em { color: var(--gold); font-style: italic; }

#hero h2 {
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  font-size: 17px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  max-width: 480px;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 16px; margin-bottom: 28px;
  background: rgba(201,168,76,0.07);
}

#hero .download-btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 30px;
  transition: all 0.35s ease;
  color: var(--white);
  background: transparent;
  border: 1.5px solid var(--gold);
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#hero .download-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
  z-index: -1;
}

#hero .download-btn:hover::before { transform: translateX(0); }
#hero .download-btn:hover { color: var(--navy); }

#hero .download-btn i {
  font-size: 42px;
  line-height: 1;
}

#hero .download-btn + .download-btn { margin-left: 16px; }

@media (max-width: 991px) {
  #hero { text-align: center; padding: 120px 0 80px; }
  #hero h2 { max-width: 100%; }
  #hero .download-btn + .download-btn { margin: 0 8px; }
  #hero .hero-img { text-align: center; margin-top: 40px; }
  #hero .hero-img img { width: 70%; }
}
@media (max-width: 768px) {
  #hero h1 { font-size: 38px; line-height: 1.2; }
  #hero h2 { font-size: 15px; }
}
@media (max-width: 575px) {
  #hero .hero-img img { width: 85%; }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section { padding: 100px 0; overflow: hidden; }

.section-bg { background-color: var(--cream); }

.section-title {
  text-align: center;
  padding-bottom: 60px;
}
.section-eyebrow {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title h2 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: var(--navy);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
  line-height: 1.2;
}
.section-title h2 em { color: var(--gold); font-style: italic; }
.section-title p {
  margin-bottom: 0;
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* Gold divider */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background-color: var(--cream);
  min-height: 40px;
}
.breadcrumbs h2 { font-size: 24px; font-weight: 300; color: var(--navy); }
.breadcrumbs ol {
  display: flex; flex-wrap: wrap; list-style: none;
  padding: 0; margin: 0; font-size: 14px;
}
.breadcrumbs ol li + li { padding-left: 10px; }
.breadcrumbs ol li + li::before {
  display: inline-block; padding-right: 10px; color: var(--text-light); content: "/";
}
@media (max-width: 768px) {
  .breadcrumbs .d-flex { display: block !important; }
  .breadcrumbs ol { display: block; }
  .breadcrumbs ol li { display: inline-block; }
}

/*--------------------------------------------------------------
# App Features
--------------------------------------------------------------*/
.features { background: var(--white); }

.features .section-title { padding-bottom: 50px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gold-pale);
}

@media (max-width: 992px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .features-grid { grid-template-columns: 1fr; }
}

.features .content { padding: 30px 0; }
.features .content .icon-box { margin-top: 25px; }
.features .content .icon-box h4 {
  font-size: 14px; font-weight: 700;
  margin: 5px 0 10px 70px;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--navy); font-family: 'Raleway', sans-serif;
}
.features .content .icon-box i {
  font-size: 48px; float: left; color: var(--gold);
}
.features .content .icon-box p {
  font-size: 14px; color: var(--text-light);
  margin-left: 70px; line-height: 1.7;
}

/* Feature cards (new grid style) */
.feature-card {
  background: var(--white);
  padding: 48px 36px;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-card:hover { background: var(--navy); }
.feature-card:hover .feat-icon { background: rgba(201,168,76,0.12); }
.feature-card:hover h3 { color: var(--white); }
.feature-card:hover p { color: rgba(255,255,255,0.5); }
.feature-card:hover::after { transform: scaleX(1); }

.feat-icon {
  width: 58px; height: 58px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px;
  transition: all 0.3s;
}
.feat-icon svg { width: 28px; height: 28px; }
.feature-card h3 {
  font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 12px;
  color: var(--navy); margin-bottom: 14px;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s;
}
.feature-card p {
  font-size: 14px; color: var(--text-light);
  line-height: 1.75; font-weight: 300;
  transition: color 0.3s;
}

@media (max-width: 991px) {
  .features .image { text-align: center; }
  .features .image img { max-width: 80%; }
}
@media (max-width: 667px) {
  .features .image img { max-width: 100%; }
}

/*--------------------------------------------------------------
# Details
--------------------------------------------------------------*/
.details { background: var(--cream); }

.details .content + .content { margin-top: 0; }

.detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 500px;
}
.detail-row.reverse { direction: rtl; }
.detail-row.reverse > * { direction: ltr; }

.detail-img {
  overflow: hidden;
  position: relative;
  min-height: 500px;
}
.detail-img-inner {
  width: 100%; height: 100%;
  min-height: 500px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  position: relative;
}
.detail-img-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.07) 0%, transparent 60%);
}

.detail-text { padding: 80px; }
.detail-text .section-eyebrow { display: block; margin-bottom: 16px; }
.detail-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px; font-weight: 600; color: var(--navy);
  line-height: 1.2; margin-bottom: 20px;
}
.detail-text h3 em { color: var(--gold); font-style: italic; }
.detail-text p {
  font-size: 15px; color: var(--text-light);
  line-height: 1.8; margin-bottom: 30px; font-weight: 300;
}

.detail-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.detail-list li {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--text); font-weight: 400;
}
.detail-list li::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}

/* Fallback for old .details styles */
.details .content h3 {
  font-weight: 600; font-size: 36px;
  color: var(--navy); font-family: 'Cormorant Garamond', serif;
}
.details .content ul { list-style: none; padding: 0; }
.details .content ul li { padding-bottom: 10px; }
.details .content ul i {
  font-size: 20px; padding-right: 4px;
  color: var(--gold); line-height: 0;
}
.details .content p:last-child { margin-bottom: 0; }

@media (max-width: 992px) {
  .detail-row { grid-template-columns: 1fr; }
  .detail-row.reverse { direction: ltr; }
  .detail-text { padding: 50px 30px; }
  .detail-img, .detail-img-inner { min-height: 360px; }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact { background: var(--navy); }
.contact .section-title h2 { color: var(--white); }
.contact .section-title p { color: rgba(255,255,255,0.5); }

.contact .info {
  padding: 24px 32px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  text-align: center;
  border: 1px solid rgba(201,168,76,0.15);
}
.contact .info i {
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 14px;
}
.contact .info h4 {
  padding: 0; margin: 0 0 10px 0;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 2px; color: var(--gold);
}
.contact .info p { font-size: 14px; color: rgba(255,255,255,0.55); }

.contact .php-email-form { width: 100%; }
.contact .php-email-form .error-message {
  display: none; color: #fff; background: #c0392b;
  text-align: left; padding: 14px; font-weight: 600;
}
.contact .php-email-form .error-message br + br { margin-top: 25px; }
.contact .php-email-form .sent-message {
  display: none; color: var(--navy); background: var(--gold);
  text-align: center; padding: 14px; font-weight: 600;
}
.contact .php-email-form .loading {
  display: none; background: rgba(255,255,255,0.05);
  text-align: center; padding: 14px;
}
.contact .php-email-form .loading::before {
  content: "";
  display: inline-block; border-radius: 50%;
  width: 22px; height: 22px;
  margin: 0 10px -5px 0;
  border: 2px solid var(--gold); border-top-color: transparent;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form label {
  font-family: 'Raleway', sans-serif;
  margin-bottom: 5px; color: rgba(255,255,255,0.4); font-size: 12px;
  letter-spacing: 1px; text-transform: uppercase;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0; box-shadow: none; font-size: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
}
.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder { color: rgba(255,255,255,0.25); }
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--gold); outline: none;
  background: rgba(201,168,76,0.05);
}
.contact .php-email-form input { padding: 12px 16px; }
.contact .php-email-form textarea { padding: 12px 16px; }

.contact .php-email-form button[type=submit],
.contact form button[type=submit] {
  background: var(--gold);
  border: none;
  padding: 14px 40px;
  color: var(--navy);
  transition: 0.35s;
  border-radius: 0;
  margin-top: 8px;
  font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 12px;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer;
}
.contact .php-email-form button[type=submit]:hover,
.contact form button[type=submit]:hover { background: var(--gold-light); }

/* Direct form inputs (non-php-email-form) */
.contact .form-group input,
.contact .form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--white);
  padding: 12px 16px;
  font-family: 'Open Sans', sans-serif; font-size: 14px;
  width: 100%;
  border-radius: 0;
  outline: none;
  transition: border-color 0.3s;
}
.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.contact .form-group input:focus,
.contact .form-group textarea:focus { border-color: var(--gold); }

@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 1024px) { .contact .php-email-form { padding: 30px 15px 15px; } }
@media (max-width: 768px) { .contact .php-email-form { padding: 15px 0 0; } }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #0d1219;
  padding: 0 0 30px 0;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
#footer .footer-newsletter { padding: 50px 0; background: var(--navy); text-align: center; font-size: 15px; }
#footer .footer-newsletter h4 {
  font-size: 22px; margin: 0 0 20px 0; padding: 0;
  line-height: 1; font-weight: 600; color: var(--white);
  font-family: 'Cormorant Garamond', serif;
}
#footer .footer-newsletter form {
  margin-top: 30px; background: rgba(255,255,255,0.05);
  padding: 6px 10px; position: relative; border-radius: 0;
  border: 1px solid rgba(201,168,76,0.2);
}
#footer .footer-newsletter form input[type=email] {
  border: 0; padding: 4px 8px;
  width: calc(100% - 110px);
  background: transparent; color: var(--white);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute; top: 0; right: 0; bottom: 0; border: 0;
  font-size: 14px; padding: 0 24px;
  background: var(--gold); color: var(--navy);
  font-family: 'Raleway', sans-serif; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  transition: 0.3s;
}
#footer .footer-newsletter form input[type=submit]:hover { background: var(--gold-light); }

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
#footer .footer-top .footer-contact { margin-bottom: 30px; }
#footer .footer-top .footer-contact h3,
#footer .footer-top .footer-contact h4 {
  font-size: 20px; margin: 0 0 24px 0; padding: 0;
  line-height: 1; font-weight: 600;
  color: var(--gold); font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
}
#footer .footer-top .footer-contact p {
  font-size: 14px; line-height: 1.8; margin-bottom: 0;
  font-family: 'Open Sans', sans-serif;
  color: rgba(255,255,255,0.4);
}
#footer .footer-top h4 {
  font-size: 13px; font-weight: 600;
  color: var(--gold); position: relative; padding-bottom: 14px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 2px; text-transform: uppercase;
}
#footer .footer-top .footer-links { margin-bottom: 30px; }
#footer .footer-top .footer-links ul { list-style: none; padding: 0; margin: 0; }
#footer .footer-top .footer-links ul i {
  padding-right: 4px; color: var(--gold); font-size: 16px; line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 8px 0; display: flex; align-items: center;
}
#footer .footer-top .footer-links ul li:first-child { padding-top: 0; }
#footer .footer-top .footer-links ul a {
  color: rgba(255,255,255,0.4); transition: 0.3s;
  display: inline-block; line-height: 1; font-size: 14px;
}
#footer .footer-top .footer-links ul a:hover { color: var(--gold); }

#footer .footer-top .social-links a {
  font-size: 18px; display: inline-block;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.5);
  line-height: 1; padding: 8px 0;
  margin-right: 6px; border-radius: 0;
  text-align: center; width: 38px; height: 38px;
  transition: 0.3s;
  border: 1px solid rgba(201,168,76,0.15);
}
#footer .footer-top .social-links a:hover {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}

#footer .container.py-4 {
  padding-top: 24px !important;
  padding-bottom: 0 !important;
  background: var(--navy-deep);
}
#footer .copyright {
  text-align: center; float: left;
  color: rgba(255,255,255,0.3);
  font-family: 'Raleway', sans-serif; font-size: 12px; letter-spacing: 1px;
}
#footer .credits {
  float: right; text-align: center;
  font-size: 12px; color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  #footer .copyright,
  #footer .credits { float: none; text-align: center; padding: 5px 0; }
}

/*--------------------------------------------------------------
# Gallery (kept hidden but CSS preserved)
--------------------------------------------------------------*/
.gallery { overflow: hidden; }
.gallery .swiper-slide { transition: 0.3s; }
.gallery .swiper-pagination { margin-top: 20px; position: relative; }
.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px;
  background-color: transparent; opacity: 1;
  border: 1px solid var(--gold);
}
.gallery .swiper-pagination .swiper-pagination-bullet-active { background-color: var(--gold); }
@media (min-width: 992px) {
  .gallery .swiper-wrapper { padding: 40px 0; }
  .gallery .swiper-slide-active {
    border: 4px solid var(--gold); padding: 4px;
    background: var(--white); z-index: 1;
    transform: scale(1.2); margin-top: 10px; border-radius: 12px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider { overflow: hidden; }
.testimonials .testimonial-item {
  box-sizing: content-box; padding: 30px 30px 30px 60px;
  margin: 30px 10px 30px 50px; min-height: 200px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  position: relative; background: var(--white);
  border-left: 3px solid var(--gold);
}
.testimonials .testimonial-item .testimonial-img {
  width: 90px; border-radius: 0;
  border: 4px solid var(--gold-pale);
  position: absolute; left: -45px;
}
.testimonials .testimonial-item h3 { font-size: 18px; font-weight: bold; margin: 10px 0 5px 0; color: var(--navy); }
.testimonials .testimonial-item h4 { font-size: 13px; color: var(--text-light); margin: 0; letter-spacing: 1px; text-transform: uppercase; }
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right { color: var(--gold-pale); font-size: 26px; }
.testimonials .testimonial-item .quote-icon-left { display: inline-block; left: -5px; position: relative; }
.testimonials .testimonial-item .quote-icon-right { display: inline-block; right: -5px; position: relative; top: 10px; }
.testimonials .testimonial-item p { font-style: italic; margin: 15px auto; }
.testimonials .swiper-pagination { margin-top: 20px; position: relative; }
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px; height: 10px; background-color: transparent;
  opacity: 1; border: 1px solid var(--gold);
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active { background-color: var(--gold); }

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row { padding-top: 40px; }
.pricing .box {
  padding: 40px; margin-bottom: 30px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  background: var(--white); text-align: center;
  border: 1px solid var(--gold-pale);
}
.pricing h3 { font-weight: 300; margin-bottom: 15px; font-size: 28px; color: var(--navy); }
.pricing h4 { font-size: 46px; color: var(--gold); font-weight: 400; font-family: 'Open Sans', sans-serif; margin-bottom: 25px; }
.pricing h4 span { color: var(--text-light); font-size: 18px; display: block; }
.pricing ul { padding: 0; list-style: none; color: var(--text-light); text-align: left; line-height: 20px; }
.pricing ul li { padding-bottom: 12px; }
.pricing ul i { color: var(--gold); font-size: 18px; padding-right: 4px; }
.pricing ul .na { color: #ccc; }
.pricing ul .na i { color: #ccc; }
.pricing ul .na span { text-decoration: line-through; }
.pricing .get-started-btn {
  background: var(--navy); display: inline-block;
  padding: 10px 32px; border-radius: 0;
  color: var(--white); transition: 0.3s; font-size: 13px;
  font-weight: 600; font-family: 'Raleway', sans-serif;
  letter-spacing: 1px; text-transform: uppercase;
  border: 1.5px solid var(--navy);
}
.pricing .get-started-btn:hover { background: transparent; color: var(--navy); }
.pricing .featured { z-index: 10; margin: -30px -5px 0 -5px; border-top: 3px solid var(--gold); }
.pricing .featured .get-started-btn { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.pricing .featured .get-started-btn:hover { background: var(--gold-light); }
@media (max-width: 992px) { .pricing .box { max-width: 60%; margin: 0 auto 30px; } }
@media (max-width: 767px) { .pricing .box { max-width: 80%; margin: 0 auto 30px; } }
@media (max-width: 420px) { .pricing .box { max-width: 100%; margin: 0 auto 30px; } }

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/
.faq .accordion-list { padding: 0 100px; }
.faq .accordion-list ul { padding: 0; list-style: none; }
.faq .accordion-list li + li { margin-top: 15px; }
.faq .accordion-list li {
  padding: 20px; background: var(--white);
  border-radius: 0; position: relative;
  border: 1px solid var(--gold-pale);
}
.faq .accordion-list a {
  display: block; position: relative;
  font-family: 'Poppins', sans-serif; font-size: 16px;
  line-height: 24px; font-weight: 500;
  padding: 0 30px; outline: none; cursor: pointer; color: var(--navy);
}
.faq .accordion-list .icon-help {
  font-size: 22px; position: absolute; right: 0; left: 20px; color: var(--gold);
}
.faq .accordion-list .icon-show,
.faq .accordion-list .icon-close { font-size: 22px; position: absolute; right: 0; top: 0; }
.faq .accordion-list p { margin-bottom: 0; padding: 10px 0 0 0; }
.faq .accordion-list .icon-show { display: none; }
.faq .accordion-list a.collapsed { color: var(--text); }
.faq .accordion-list a.collapsed:hover { color: var(--gold); }
.faq .accordion-list a.collapsed .icon-show { display: inline-block; }
.faq .accordion-list a.collapsed .icon-close { display: none; }
@media (max-width: 1200px) { .faq .accordion-list { padding: 0; } }

