/* ...existing code... */
/* Minimal stylesheet: keep header, footer, body typography and blog sections only */

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

/* Reset & base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-size: 1rem;
  line-height: 1.4;
  font-family: "Montserrat", sans-serif;
  color: #655C59;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Lists */
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: "Optima", sans-serif;
  color: #763300;
}
h1 { font-size: 3.5rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2.8rem; }

@media (max-width: 480px) {
  h1, h2, h3 { font-size: 2rem; }
}

/* Container basic padding (kept minimal) */
.container, .container-fluid {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Header */
header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 75px;
  padding: 0.5rem 0;
  transition: all 0.3s ease-in-out;
  z-index: 10;
  background: #ffffff;
}
@media (max-width: 480px) {
  header { height: 60px; }
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 1rem;
}
header .wrap .logo {
  width: 180px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  header .wrap .logo { width: 140px; }
}
@media (max-width: 480px) {
  header .wrap .logo { width: 120px; }
}
header .wrap .logo img {
  width: 73%;
  height: auto;
  display: block;
}
header .wrap .nav-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}
header .wrap .nav-wrap nav ul {
  display: flex;
  gap: 1rem;
  align-items: center;
}
header .wrap .nav-wrap nav ul li {
  font-weight: 500;
  font-size: 1.1rem;
}
@media (max-width: 480px) {
  header .wrap .nav-wrap nav ul li { font-size: 0.9rem; }
}
header .wrap .nav-wrap nav ul li a {
  color: #000000;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}
header .wrap .nav-wrap nav ul li a:hover {
  color: #F37A21;
}
header .wrap .nav-wrap nav ul li .phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #6c503c, #1e140b);
  color: #ffffff;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 122, 33, 0.2);
  box-shadow: 0 8px 18px rgba(243, 122, 33, 0.28), 0 2px 4px rgba(0, 0, 0, 0.06);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease, background 0.3s ease;
  text-decoration: none;

}
header .wrap .nav-wrap nav ul li .phone-btn .phone-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}
header .wrap .nav-wrap nav ul li .phone-btn .phone-icon svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
}
header .wrap .nav-wrap nav ul li .phone-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(243, 122, 33, 0.34), 0 3px 6px rgba(0, 0, 0, 0.08);
  filter: brightness(1.02);
}
header .wrap .nav-wrap nav ul li .phone-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 122, 33, 0.25), 0 10px 20px rgba(243, 122, 33, 0.28);
}
@keyframes phonePulse {
  0% { box-shadow: 0 8px 18px rgba(243,122,33,0.28), 0 0 0 0 rgba(243,122,33,0.0); }
  50% { box-shadow: 0 10px 22px rgba(243,122,33,0.34), 0 0 0 6px rgba(243,122,33,0.18); }
  100% { box-shadow: 0 8px 18px rgba(243,122,33,0.28), 0 0 0 0 rgba(243,122,33,0.0); }
}
@media (max-width: 480px) {
  header .wrap .nav-wrap nav ul li .phone-btn { padding: 0.45rem 0.8rem; font-size: 0.9rem; }
  header .wrap .nav-wrap nav ul li .phone-btn .phone-icon { width: 24px; height: 24px; }
}

/* Footer */
footer {
  position: relative;
  padding: 1.5rem 1rem;
  background: #1E3D72;
  color: rgba(255,255,255,0.9);
}
footer .wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
footer .wrap .logo { width: 120px; }
footer .wrap .link-block {
  margin: 1rem 0;
  color: rgba(255,255,255,0.9);
}
footer .wrap .link-block a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}
footer .wrap .link-block a:hover { color: #ffffff; }

footer .wrap .subscribe-wrap {
  max-width: 320px;
  margin-left: auto;
}
footer .wrap .subscribe-wrap input[type="email"],
footer .wrap .subscribe-wrap .input {
  width: 100%;
  border: rgba(255,255,255,0.6) solid 1px;
  background: transparent;
  border-radius: 10px;
  color: #ffffff;
  padding: 0.6rem 1rem;
  outline: 0;
}
footer .wrap .subscribe-wrap .submit {
  background: #F9F9FF;
  padding: 0.6rem 1rem;
  color: #001B3E;
  border: 0;
  margin-top: 0.5rem;
  border-radius: 30rem;
  cursor: pointer;
}
footer .wrap .social-icons-wrap ul {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
footer .wrap .social-icons-wrap ul li svg {
  width: 20px;
  fill: rgba(255,255,255,0.9);
}

/* Blog listing & cards */
.blogs-listing-cont {
  width: 100%;
  margin: 150px 0 50px;
  padding: 0;
}
.blogs-listing-cont .head {
  width: 98%;
  margin: 0 auto;
  padding: 0 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blogs-listing-cont .head .title {
  font-size: 3.5rem;
  color: #001B3E;
  font-family: "Optima", sans-serif;
  line-height: 1;
}
@media (max-width: 480px) {
  .blogs-listing-cont .head .title { font-size: 2rem; }
}

/* Cards grid */
.blog-listing-cards-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (max-width: 480px) {
  .blog-listing-cards-wrapper { grid-template-columns: 1fr; gap: 1.5rem; }
}

.blog-listing-cards-wrapper .card {
  border-radius: 0.9rem;
  overflow: hidden;
  background: transparent;
  border: none;
}
.blog-listing-cards-wrapper .card .card-body {
  background: #F9F9FF;
  padding: 2rem;
  border-radius: 0.9rem 0.9rem 0 0;
}
@media (max-width: 480px) {
  .blog-listing-cards-wrapper .card .card-body { padding: 1rem; }
}
.blog-listing-cards-wrapper .card .card-body .date {
  font-size: 0.688rem;
  color: #655C59;
}
.blog-listing-cards-wrapper .card .card-body .card-title {
  color: #001B3E;
  font-family: "Optima", sans-serif;
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 400;
  margin: 1rem 0;
}
.blog-listing-cards-wrapper .card .card-body .card-text {
  color: #655C59;
  line-height: 1.5;
}

/* Single blog post */
.blog-post-wrapper {
  width: 100%;
  margin: 150px 0 50px;
  padding: 0;
}
@media (max-width: 480px) {
  .blog-post-wrapper { margin: 90px 0 50px; }
}
.blog-post-wrapper .heading {
  width: 90%;
  font-family: "Optima", sans-serif;
  font-size: 3.563rem;
  color: #001B3E;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 480px) {
  .blog-post-wrapper .heading { font-size: 1.5rem; width: 100%; }
}
.blog-post-wrapper .banner img {
  width: 100%;
  border-radius: 0.9rem;
  position: relative;
  z-index: 1;
}
.blog-post-wrapper .banner {
  position: relative;
}
.blog-post-wrapper .banner .svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
}
.blog-post-wrapper .banner .svg-container svg {
  width: 100%;
  height: 100%;
  display: block;
}


.blog-post-wrapper .post-cont-wrap {
  width: 136%;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
  margin-left: 40px;
 }
@media (max-width: 480px) {
  .blog-post-wrapper .post-cont-wrap {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-left: 0;
  }
 }
.blog-post-wrapper .post-cont-wrap .post {
  width: 70%;
}
@media (max-width: 480px) {
  .blog-post-wrapper .post-cont-wrap .post { width: 100%; }
}
.blog-post-wrapper .post-cont-wrap .post p {
  color: #655C59;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0.5rem 0;
}
.blog-post-wrapper .post-cont-wrap .related-article {
  width: 25%;
  position: sticky;
  top: 1rem;
}
@media (max-width: 480px) {
  .blog-post-wrapper .post-cont-wrap .related-article { width: 100%; position: relative; top: auto; }
}

/* Basic buttons (used by footer/subscribe) */
.btn {
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.btn-primary {
  background: #763300;
  border-color: #763300;
  color: #fff;
  border: 0;
}
.btn-primary:hover { opacity: 0.95; }

/* SVG fills used in header/footer */
.orange-svg-fill { fill: #F37A21; }
.blue-svg-fill { fill: #1E3D72; }
.white-svg-fill { fill: #ffffff; }

/* Minimal modal-related safe styles (keep nothing visible by default) */
.modal-content { display: none; }

/* keep Optima font-face for headings if available locally */
@font-face {
  font-family: "Optima";
  src: url("../fonts/Optima.woff2") format("woff2"),
       url("../fonts/Optima.woff") format("woff"),
       url("../fonts/Optima.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
}

/* ...existing code... */