
:root {
  --primary-bg: #0c0d13;
  --secondary-bg: #12131b;
  --accent: #e4b400;
  --white: #ffffff;
  --text-light: #d0d0d0;
}

/* GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: var(--primary-bg);
  color: var(--white);
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: var(--white);
}

.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
header {
  background: var(--secondary-bg);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav .logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav ul li a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--white);
}

/* HERO */
.hero {
  background: var(--secondary-bg);
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 50px;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--accent);
}
.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
}

/* SECTIONS */
.section {
  padding: 80px 0;
}
.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 40px;
  color: var(--accent);
}

/* SERVICE CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--secondary-bg);
  padding: 25px;
  border-radius: 10px;
  transition: 0.4s ease;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 8px 20px rgba(228,180,0,0.4);
}
.card h3 {
  margin-bottom: 10px;
  color: var(--accent);
}

/* BUTTONS */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease;
}
.btn:hover {
  background: #fff;
  color: #000;
}

/* FORM */
form input, form textarea {
  width: 100%;
  padding: 12px;
  margin: 12px 0;
  border: none;
  border-radius: 5px;
}
.error {
  color: #f87171;
  font-size: 14px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #090a0f;
  margin-top: 40px;
  color: var(--text-light);
}

ul.bl-ul {
    margin-left: 25px !important;
}

a.link-blog {
    color: #f24405;
    font-weight:500;
}

a.blog-link {
    font-weight: 600 !important;
    color: #f24405;
}

.blog-sec h3 {
    font-size: 34px !important;
    margin-bottom: 10px !important;
}


.blog-sec img {
    width: 100% !important;
    border-radius: 8px !important;
    background: #0d0d0d40 !important;
    padding: 10px !important;
}

.vertical-spacing .col-12 a {
    color: #f24405;
    font-weight: 800 !important;
}

.vertical-spacing .col-12 a span {
    font-weight: 800 !important;
}

.blog-fic h3 {
    font-size: 20px !important;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: var(--secondary-bg);
    position: absolute;
    top: 65px;
    right: 0;
    width: 220px;
    padding: 15px;
  }
  nav ul.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
}