﻿body { font-family: Arial, Helvetica, sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: #f9f9f9; color: #333; text-align: center; }

header, footer {
	background-color: #1e1e1e;
	color: white;
	padding: 1rem 0;
}
h1, h2 {
	color: #27a3d9;
	margin: 0.5rem 0;
}
a {
	color: #27a3d9;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
/* Nav Links */
nav{
    background:#111; /* dark background for contrast */
    padding:15px 20px;
    text-align:center;
    border-radius:8px; /* optional */
}

nav a{
    color:#fff; /* white links */
    text-decoration:none;
    font-weight:bold;
    margin:0 10px;
    transition: color 0.2s;
}

nav a:hover{
    color:#ffd700; /* gold hover effect */
    text-decoration:underline;
}
.container {
	padding: 1rem;
	max-width: 960px;
	margin: 0 auto;
	text-align: left;
}
.container h1,
.container h2 {
    text-align: center;
}
footer p {
	margin: 0;
	font-size: 0.9rem;
	text-align: center;
}
ul {
	margin-left: 1.5rem;
}
.gallery-vertical {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
}
.gallery-vertical img {
	width: 300px;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.video-container {
	position: relative;
	width: 100%;
	max-width: 720px; /* optional max width */;
	margin: 0 auto; /* center */
}
.video-container video {
	width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

/* review stars */
.review-stars{
text-align:center;
margin-bottom:40px;
font-size:36px;
letter-spacing:3px;
}
.review-stars-small{
color:#ffd700;
font-size:18px;
letter-spacing:2px;
margin-bottom:6px;
}
.star-rating{
font-size:40px;
letter-spacing:4px;
color:#ff2a2a;
text-shadow:0 0 6px rgba(255,0,0,0.6);
}
.review-score{
font-size:18px;
color:#555;
}
.trust-badges{
display:flex;
flex-wrap:wrap;
gap:20px;
margin-top:40px;
}
.review-content{
background:#fafafa;
padding:35px;
border-radius:12px;
box-shadow:0 3px 12px rgba(0,0,0,0.08);
line-height:1.7;
font-size:17px;
}
.badge{
flex:1;
background:#111;
color:white;
padding:20px;
border-radius:8px;
text-align:center;
}
/* Review Grid & Cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.review-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  line-height: 1.6;
  transition: transform 0.2s, box-shadow 0.2s;
}

.review-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.review-box p {
  margin: 10px 0;
  font-size: 16px;
}

.review-box strong {
  display: block;
  margin-top: 8px;
  color: #333;
}

/* Individual Review Stars inside each card */
.review-box .review-stars-small {
  color: #ffd700;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 6px;
}

.faq-container {
  max-width: 800px;
  margin: 2rem auto;
}

.accordion-toggle {
  width: 100%;
  text-align: left;
  font-size: 1.1rem;
  padding: 0.75rem 1rem;
  border: none;
  background: #0f0c36;       /* dark navy */
  color: #ffffff;             /* ensure white text is readable */
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  margin-bottom: 0.5rem;
  transition: background 0.3s, color 0.3s;
}

.accordion-toggle:hover {
  background: #63a2d4;        /* light blue hover */
  color: #0f0c36;             /* dark text on hover for contrast */
}

.accordion-toggle.active {
  background: #8b0000;        /* darker red, slightly softer than #b71c1c */
  color: #ffffff;
}

.accordion-content {
  display: none;
  padding: 0.75rem 1rem;
  background: #bed7eb;        /* light blue content background */
  color: #0f0c36;             /* dark text for readability */
  border-left: 3px solid #27a3d9; /* accent border */
  border-radius: 0 5px 5px 5px;
  margin-bottom: 0.5rem;
}

#backToTop {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: #27a3d9;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}
#backToTop:hover {
  background-color: #1e88c9;
}
  .auto-style1 {
	  text-align: center;
  }

form {
	max-width: 600px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
input, textarea {
	padding: 0.5rem;
	font-size: 1rem;
	border-radius: 4px;
	border: 1px solid #ccc;
	width: 100%;
}
button {
	padding: 0.75rem;
	background-color: #c62828;
	color: white;
	border: none;
	border-radius: 4px;
	font-size: 1rem;
	cursor: pointer;
}
button:hover {
	background-color: #a71d1d;
}
.formsite-wrapper {
	max-width: 600px; /* matches your container width */;
	margin: 1rem auto; /* centers form */
}
