/* ------------------------------
   GLOBAL
------------------------------ */

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #000000;
  background: #fff;
  line-height: 1.6;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

/* ------------------------------
   NAVIGATION
------------------------------ */

nav {
  background: #a17171;
  color: #fff;
  padding: 15px 0;
}

.nav-container {
  width: min(1100px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav strong {
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  opacity: 0.7;
}

/* NAV BAR SHRINK EFFECT */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #000000;
  transition: all 0.3s ease;
  padding: 22px 0; /* expanded height */
}

nav.shrink {
  padding: 10px 0; /* smaller height */
  background: #111; /* stays solid */
}

nav strong {
  font-size: 1.5rem;
  transition: font-size 0.3s ease;
}

nav.shrink strong {
  font-size: 1.2rem;
}

nav ul li a {
  transition: padding 0.3s ease, opacity 0.3s ease;
}

nav.shrink ul li a {
  opacity: 0.85;
}

/* ------------------------------
   HERO SECTION
------------------------------ */

.hero {
  background: #d39c36;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  color: #ffffff;
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.hero h2 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 400;
}

.hero h2 span {
  font-weight: 700;
  color: #000000;
}

.hero-text {
  color: #ffffff;
  margin-top: 15px;
  font-size: 1.6rem;
}

.hero-highlight {
  margin-top: 10px;
  font-weight: bold;
  color: #000000;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #000000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.btn-primary:hover {
  opacity: 0.85;
}

/* ------------------------------
   SECTIONS
------------------------------ */

.section {
  padding: 60px 0;
}

.section.light {
  background: #f8f9fa;
}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.center-text {
  text-align: center;
  color: #555;
}

/* ------------------------------
   GRID CARDS
------------------------------ */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ------------------------------
   MAP
------------------------------ */

.service-map {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 25px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------
   FOOTER
------------------------------ */

.site-footer {
    background-color: #000000;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: rgb(202, 195, 195);
}

.site-footer hr {
    border-top-color: rgb(202, 195, 195);
    opacity: 0.5
}

.site-footer hr.small {
    margin: 20px 0
}

.site-footer h6 {
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px
}

.site-footer a {
    color: rgb(202, 195, 195);
}

.site-footer a:hover {
    color: #3366cc;
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none
}

.footer-links li {
    display: block
}

.footer-links a {
    color: rgb(199, 199, 199)
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: #cb17db;
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block
}

.site-footer .social-icons {
    text-align: right
}

.site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    background-color: #33353d
}

.copyright-text {
    margin: 0
}

@media (max-width:991px) {
    .site-footer [class^=col-] {
        margin-bottom: 30px
    }
}

@media (max-width:767px) {
    .site-footer {
        padding-bottom: 0
    }
    .site-footer .copyright-text,
    .site-footer .social-icons {
        text-align: center
    }
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px
}

.social-icons a {
    background-color: #eceeef;
    color: #fff;
    font-size: 16px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    text-align: center;
    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear
}

.social-icons a:active,
.social-icons a:focus,
.social-icons a:hover {
    color: #fff;
    background-color: #29aafe
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px
}

.social-icons a.facebook:hover {
    background-color: #3b5998
}

.social-icons a.twitter:hover {
    background-color: #00aced
}

.social-icons a.instagram:hover {
    background-color: #d33c62
}

@media (max-width:767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600
    }
  }

/* ------------------------------
   QUOTE FORM
------------------------------ */

.quote-form {
  margin-top: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  display: grid;
  gap: 18px;
}

.quote-form label {
  font-weight: 600;
  color: #222;
  margin-bottom: 4px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  background: #fafafa;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: #d62828;
  background: #fff;
  outline: none;
}

.quote-form button {
  margin-top: 10px;
  width: 100%;
  padding: 14px;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* ------------------------------
   DETAILS BOX
------------------------------ */

.details-box {
  margin-top: 40px;
  background: #f8f9fa;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.details-box h3 {
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}

.list {
  margin: 15px 0;
  padding-left: 20px;
}

.list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

/* ------------------------------
   SMALL TEXT
------------------------------ */

.small-text {
  font-size: 0.9rem;
  color: #d62828;
  margin-top: 10px;
}

/* ------------------------------
   ACTIVE NAV LINK
------------------------------ */

nav a.active {
  color: #d62828;
  font-weight: 700;
}