:root {
  --red: #c62d2d;
  --black: #000000;
  --dark-gray: #333333;
  --navy: #070063;
  --navy-block: #2c2470;
  --body-bg: #f5f5f5;
  --text: #000000;
  --muted: #444;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--body-bg);
  line-height: 1.6;
}

h1, h2, h3 { font-weight: 700; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

/* Hero */
.hero {
  background-color: #333;
  background-image: url('images/New-Project-33.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
}

.hero-logo {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 140px;
  height: auto;
  z-index: 2;
  background: rgba(255,255,255,0.85);
  padding: 6px;
}

.hero-inner {
  position: relative;
  width: 100%;
  text-align: center;
  padding: 60px 20px;
}

.hero-text h1 {
  color: #fff;
  font-size: 3.2rem;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero-text h2 {
  color: #fff;
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.5em;
  margin: 14px 0 30px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 30px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  border-radius: 0;
}

.btn-red { background: var(--red); color: #fff; }
.btn-black { background: var(--black); color: #fff; }

/* Intro / red section */
.intro {
  background: var(--red);
  color: #fff;
  padding: 50px 20px 40px;
  text-align: center;
}

.intro > p {
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
}

.badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.badges img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.details-grid {
  max-width: 900px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.detail-card {
  background: rgba(255,255,255,0.1);
  padding: 18px 20px;
  text-align: left;
}

.detail-card h3 {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}

.detail-card p {
  font-weight: 600;
  font-size: 0.95rem;
}

.review-heading {
  text-align: left;
  max-width: 900px;
  margin: 0 auto 14px;
  font-size: 1.5rem;
}

.review-icons {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 14px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
}

.icon-green { background: #5cb85c; }
.icon-red { background: #d9534f; }

/* Services (dark section) */
.services {
  background: var(--dark-gray);
  color: #eee;
  padding: 60px 20px;
}

.services h2 {
  text-align: center;
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.services-grid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
}

.services-col h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #555;
}

.services-col li {
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid #4a4a4a;
  font-size: 0.95rem;
  position: relative;
}

.services-col li::before {
  content: '\276F';
  color: var(--red);
  position: absolute;
  left: 0;
}

.services-col:last-child li::before {
  top: 10px;
}

.services-col strong { color: #fff; }

/* Gallery */
.gallery {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 34px;
}

.gallery-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 54px;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* Audience */
.audience {
  background: var(--red);
  padding: 60px 20px;
  text-align: center;
}

.audience h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 34px;
}

.audience-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.audience-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
}

.audience-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.audience-card h3 {
  padding: 20px 12px;
  font-size: 1.05rem;
  color: #1a1a1a;
  text-align: center;
}

/* Contact */
.contact {
  background: #f2f2f2;
  padding: 60px 20px;
}

.contact h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.contact-form {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form label {
  font-weight: 400;
  margin-top: 14px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.captcha-row {
  margin-top: 10px;
}

.captcha-q {
  display: inline-block;
  background: #eee;
  padding: 4px 14px;
  margin-left: 8px;
  font-family: monospace;
  letter-spacing: 2px;
}

.contact-form button {
  align-self: flex-start;
  margin-top: 16px;
}

/* Testimonials */
.testimonials {
  background: #f2f2f2;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 34px;
}

.testimonial-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: #fff;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.testimonial-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.reviewer {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.testimonial-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.google-tag {
  display: inline-block;
  margin-top: 8px;
  color: #666;
  font-size: 0.9rem;
}

.stars {
  color: #f5a623;
  margin-left: 6px;
  letter-spacing: 1px;
}

/* FAQ */
.faq {
  background: var(--navy);
  color: #fff;
  padding: 60px 20px;
}

.faq h2 {
  text-align: center;
  font-size: 1.9rem;
  margin: 44px 0 22px;
}

.faq h2:first-child { margin-top: 0; }

.accordion {
  max-width: 1000px;
  margin: 0 auto;
}

.accordion details {
  background: var(--navy-block);
  padding: 4px 24px;
  margin-bottom: 10px;
}

.accordion summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: '\25BC';
  font-size: 0.8rem;
  color: #fff;
  margin-left: 12px;
  flex-shrink: 0;
}

.accordion details[open] summary::after {
  content: '\25B2';
}

.accordion p {
  color: #d8d6f0;
  margin: 0 0 18px;
  font-size: 0.92rem;
}

/* Footer */
.site-footer {
  background: #2b2b2b;
  color: #ccc;
  text-align: center;
  padding: 26px 20px;
  font-size: 0.95rem;
}

.footer-link {
  color: #7a7ae0;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { gap: 30px; }
}

@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero-text h1 { font-size: 2.1rem; }
  .hero-text h2 { letter-spacing: 0.2em; font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .details-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex-direction: column; align-items: center; text-align: center; }
}
