/* RESET */
*{
box-sizing:border-box;
margin:0;
padding:0;
font-family:Arial, sans-serif;
}

/* BODY */
body{
background:#f4f6f9;
}

/* HEADER */
.main-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 40px;
background:#fff;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:999;
}

.logo img{
height:70px;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#b30000;
font-weight:bold;
}

nav a:hover{
color:#800000;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  background: #1a1a1a;
}

.slider-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 42%;
  overflow: hidden;
}

.slider-wrap .slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.slider-wrap .slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-wrap .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  z-index: 2;
  transition: background 0.2s;
}

.slider-btn:hover {
  background: rgba(179,0,0,0.8);
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.slider-dots .dot:hover,
.slider-dots .dot.active {
  background: #fff;
}

/* CONTAINER */

.container{
width:90%;
max-width:1100px;
margin:40px auto;
}

/* BUTTON */

.btn{
background:#b30000;
color:white;
padding:12px 25px;
border:none;
cursor:pointer;
border-radius:5px;
font-size:15px;
}

.btn:hover{
background:#800000;
}

/* FORM */

form{
background:#fff;
padding:25px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

input,textarea{
width:100%;
padding:10px;
margin:10px 0;
border:1px solid #ccc;
border-radius:5px;
}

input[type=radio]{
width:auto;
margin-right:5px;
}

/* TWO COLUMN */

.row{
display:flex;
gap:15px;
}

.row input{
flex:1;
}

/* INTRO SECTION */
.intro-section {
  text-align: center;
  padding: 48px 24px;
}

.intro-section h1 {
  color: #222;
  margin-bottom: 16px;
  font-size: 2rem;
}

.intro-section .lead {
  color: #555;
  max-width: 640px;
  margin: 0 auto 24px;
  line-height: 1.6;
  font-size: 1.05rem;
}

/* TESTIMONIALS */
.testimonials-section {
  padding: 40px 0 56px;
}

.testimonials-section h2 {
  text-align: center;
  color: #222;
  margin-bottom: 32px;
  font-size: 1.75rem;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.testimonial-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 3px solid #b30000;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  color: #444;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.testimonial-name {
  font-weight: bold;
  color: #222;
  margin-bottom: 2px;
}

.testimonial-role {
  color: #888;
  font-size: 0.9rem;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* FOOTER - BLACK */
.site-footer {
  background: #0d0d0d;
  color: #aaa;
  margin-top: 56px;
  padding: 48px 24px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a2a2a;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.footer-col p,
.footer-col ul {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #b30000;
}

.footer-bottom {
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

.footer-bottom p {
  margin: 0;
}

/* MOBILE */

@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
  }
  nav {
    margin-top: 10px;
  }
  .row {
    flex-direction: column;
  }
  .hero-slider {
    height: 260px;
  }
  .intro-section h1 {
    font-size: 1.5rem;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
}