/* =========================
   Base
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

body {
  font-family: 'Montserrat', sans-serif;
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* =========================
   Site Wrapper
   ========================= */
.site-wrapper {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   Header & Footer Banners
   ========================= */
.top-banner {
  position: relative;
}

.top-banner,
.bottom-banner {
  display: flex;
  justify-content: center;
  width: 100%;
}

.top-banner .site-wrapper,
.bottom-banner .site-wrapper {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  width: 100%;
  max-width: 1000px;
}

.top-banner .site-wrapper {
  justify-content: space-between;
  background: #000;
  border-bottom: 2px solid #fff;
  border-radius: 0 0 6px 6px;
}

.bottom-banner .site-wrapper {
  justify-content: center;
  background: #222;
  text-align: center;
  flex-wrap: nowrap;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  font-size: 10px;
}

/* =========================
   Logo
   ========================= */
.logo {
  max-width: 250px;
  width: 100%;
  height: auto;
  padding-top: 20px;
}

/* =========================
   Navigation
   ========================= */
.nav {
  display: flex;
  margin-top: auto;
  gap: 30px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  padding-bottom: 3px;
  white-space: nowrap;
  transition: opacity 0.3s;
}

.nav a.active {
  border-bottom: 2px solid #fff;
}

.nav a:hover {
  opacity: 0.8;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a1a;
  min-width: 220px;
  flex-direction: column;
  padding: 10px 0;
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
  border: 1px solid #222;
  border-radius: 8px;
  z-index: 1000;
}

.dropdown-menu a {
  padding: 10px 18px;
  display: block;
  color: #fff;
}

.dropdown-menu a.active {
  font-weight: bold;
  border-bottom: none;
  background: rgba(255,255,255,0.08);
}

.dropdown-menu a:hover {
  background: rgba(255,255,255,0.08);
}

.nav-dropdown:hover .dropdown-menu {
  display: flex;
}

.hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -5px);
}

@media (max-width: 900px) {
  .top-banner .site-wrapper {
    flex-direction: row;
    align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
  }

  .logo {
    max-width: 200px;
	width: 100%;
  }
  
  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: #111;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    z-index: 1000;
    border-radius: 8px;
	gap: 0;
  }

  .nav.show {
    max-height: 1000px;
	border: 2px solid #444;
  }

  .nav ul {
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav li {
    width: 100%;
	margin: 0;
  }

  .nav a {
    display: block;
    padding: 12px 20px;
    width: 100%;
  }
  
  .nav a:hover {
    opacity: 1;
  }
  
  .nav a.active {
    border: none;
	background: rgba(255,255,255,0.08);
	font-weight: bold;
  }
  
  .nav a:hover:active {
    background: rgba(255,255,255,0.08);
  }

  .nav-dropdown .dropdown-menu {
	position: static;
	display: block;
	padding: 0px 0px 0px 20px;
	background: none;
	border: none;
	box-shadow: none;
	max-height: none;
  }

  .nav-dropdown.active .dropdown-menu {
    max-height: 500px;
  }
  
  .dropdown-menu a:hover {
	background: none;
  }
  
  .dropdown-menu a.active {
	font-weight: bold;
	background: rgba(255,255,255,0.08);
  }
  
}

/* =========================
   Main Content
   ========================= */
.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.content p,
.content li {
	line-height: 1.6;
}

.hero-banner {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  padding: 1rem;
}

.hero-banner .banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-banner .hero-text {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.8);
  padding: 2rem;
  border-radius: 8px;
  color: #fff;
  width: 90%;
  max-width: 900px;
  box-sizing: border-box;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-banner .hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.hero-banner .hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: #fff;
  color: #000;
  font-weight: bold;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-button:hover {
  background: #444;
  color: #fff;
}

@media (max-width: 768px) {
  .hero-banner .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-banner .hero-text p {
    font-size: 1rem;
  }
}

/* =========================
   Stacked Layout
   ========================= */
.info-stack {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0rem;
}

.info-block {
  padding: 2rem 1rem;
  border-bottom: 2px solid #444;
}

.info-block h2 {
  margin-top: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1.17rem;
  margin-bottom: 0.75rem;
}

.info-block ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.info-block li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.info-block p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* =========================
   Services Cards
   ========================= */
.services {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: #111;
  color: #fff;
  padding: 1.5rem;
  border: 2px solid #444;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

.service-card h2 {
  margin-top: 0;
  color: #fff;
  font-weight: 700;
  font-size: 1.17rem;
  margin-bottom: 0.75rem;
}

.service-card ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.service-card li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.service-card p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-card.image-card {
	padding: 0;
	overflow: hidden;
	border-radius: 12px;
	position: relative;
}

.service-card.image-card img {
  width: 100%;         
  height: 100%;        
  object-fit: cover;   
  display: block;
 }
 
.service-card .button-wrapper {
  position: relative;
  height: 60px;
  margin-top: auto;
  text-align: center;
}

.service-card .button-wrapper .cta-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 600px) {
  .services-cards {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Stacked Layout
   ========================= */
.service-stack {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0rem;
}

.service-block {
  display: flex;
  flex-direction: row;
  padding: 2rem 0rem;
  border-bottom: 2px solid #444;
}

.service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.service-block .text-content {
  flex: 1;
  padding: 0 1rem;
}

.service-block .image-content {
  flex: 1;
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 1 / 1;
}

.service-block .image-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-block .image-content img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.service-block h2 {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.service-block p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-block ul {
  margin-top: 0.5rem;
  padding-left: 1.2rem;
}

.service-block li {
  line-height: 1.6;
  margin-bottom: 0.5rem;
}


@media (max-width: 768px) {
  .service-block {
    flex-direction: column;
  }
  
  .service-block .text-content,
  .service-block .image-content {
    flex: unset;
	height: auto;
	position: static;
  }
  
  .service-block .image-content img {
    position: static;
    width: 100%;
    height: auto;
  }
  
  .service-block,
  .service-block:nth-child(even) {
    flex-direction: column;
  }
}


/* =========================
   Contact Form
   ========================= */
.bottom-cta {
  text-align: center;
  margin: 3rem 0;
}
   
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  background: #111;
  border: 1px solid #444;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #AAA;
}

.contact-form textarea {
  min-height: 200px;
  resize: vertical;
  max-height: 400px;
}

.contact-form button {
  padding: 12px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  width: 120px;
  display: block;
  margin: 0 auto;
}

.contact-form button:hover {
  background: #444;
  color: #fff;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: 600;
}

.required-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
