/* General resets */
body, h1, h2, h3, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212; /* Dark background */
  color: #f0f0f0; /* White text */
  line-height: 1.6;
}

/* Header */
header {
  background: linear-gradient(90deg, #1c1c1c, #2a2a2a);
  padding: 25px;
  text-align: center;
  border-bottom: 4px solid #e50914; /* Bold red accent */
  box-shadow: 0 4px 10px rgba(0,0,0,0.7);
}

header h1 {
  color: #e50914;
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

header p {
  color: #ffffff;
  font-size: 1.1rem;
  opacity: 1.5;
}

/* Navigation */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 0 10px;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

nav a:hover {
  background-color: #e50914;
  color: #ffffff;
}

/* Sections */
section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 30px;
  background: #1e1e1e;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
}

h2 {
  color: #e50914;
  margin-bottom: 20px;
  border-bottom: 2px solid #e50914;
  padding-bottom: 8px;
}

/* Services Grid */
#services ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  list-style: none;
  padding: 0;
}

#services li a {
  display: block;
  background: #2a2a2a;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  border-radius: 15px;
  text-decoration: none;
  transition: transform 0.3s, background 0.3s, border 0.3s;
  border: 2px solid transparent;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#services li a:hover {
  transform: translateY(-5px);
  background: #1c1c1c;
  border: 2px solid #e50914;
  color: #e50914;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #1c1c1c;
  border-top: 4px solid #e50914;
  margin-top: 50px;
  border-radius: 0 0 12px 12px;
}

/* Header on top of video */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: rgba(28,28,28,0.6); /* semi-transparent so video shows behind */
  padding: 25px;
  text-align: center;
  border-bottom: 4px solid #e50914;
  box-shadow: 0 4px 10px rgba(0,0,0,0.7);
}

/* Video Banner behind header */
.video-banner {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin: 0 auto 40px;
  border-bottom: 4px solid #e50914;
  z-index: 1;
}  

/* Static image hero (replaces video) */
.video-banner img {
width: 100%;
height: 600px; /* match previous hero height */
object-fit: cover; /* fill without distortion */
display: block;
object-position: 50% 35%;
}

/*.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgba(0,0,0,0.3);
  text-align: center;
  z-index: 2; /* ensures overlay text appears above video */
}

.video-overlay h2 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.video-overlay p {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  text-shadow: 4px 4px 8px rgba(0,0,0,0.7);
}

/* Body padding so content doesn’t overlap header */
body {
  padding-top: 150px; /* adjust to match header height */
}

/* Contact Section */
#contact {
  text-align: center;
  background: #1e1e1e;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  margin: 50px auto;
  max-width: 800px;
}

#contact h2 {
  font-size: 2rem;
  color: #e50914;
  margin-bottom: 20px;
}

#contact p {
  font-size: 1.1rem;
  margin: 10px 0 20px;
  color: #f0f0f0;
}

/* Action row: big call button + smaller social icons */
.contact-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Big primary call button */
.call-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;             /* Larger than socials */
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  background: #e50914;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.3s ease;
}

.call-button:hover { background: #b0060f; transform: translateY(-2px); }

/* Smaller circular social buttons */
.social-circle {
  width: 44px;                     /* Smaller than call button */
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  border: 2px solid transparent;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.3s ease, background 0.3s ease;
}

.social-circle:hover { transform: translateY(-2px); border-color: #e50914; background: #1c1c1c; }

/* SVG icons inside socials */
.social-circle svg { width: 22px; height: 22px; fill: #fff; transition: fill 0.3s ease; }

/* Brand hover colors */
.social-circle[href*="facebook"]:hover svg { fill: #1877F2; }
.social-circle[href*="instagram"]:hover svg { fill: url(#insta-gradient); }

/* Contact Form */
#contact-form {
  text-align: left;
  background: #1e1e1e;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.7);
  margin: 30px auto 60px;
  max-width: 800px;
}

#contact-form h2 {
  text-align: center;
  color: #e50914;
  margin-bottom: 20px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}

/* Stack on small screens */
@media (max-width: 720px) {
  .contact-form { grid-template-columns: 1fr; }
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-row label {
  font-weight: 700;
  margin-bottom: 8px;
}

.form-row .muted { opacity: 0.7; font-weight: 400; }

.form-row input,
.form-row select,
.form-row textarea {
  background: #2a2a2a;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder { color: #bbbbbb; }

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: #e50914; background: #1c1c1c; }

.submit-button {
  grid-column: 1 / -1; /* full width */
  background: #e50914;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.submit-button:hover { background: #b0060f; transform: translateY(-2px); }

.mailto-fallback { grid-column: 1 / -1; text-align: center; margin-top: 8px; }
.mailto-fallback a { color: #e50914; font-weight: 600; }

/* ===== Service page layout ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

.breadcrumbs { font-size: 0.9rem; opacity: 0.85; margin-bottom: 10px; }
.breadcrumbs a { color: #e50914; text-decoration: none; }
.breadcrumbs span { opacity: 0.6; margin: 0 6px; }

.service-hero { background: linear-gradient(180deg, #1a1a1a, #151515); padding: 40px 0 20px; border-bottom: 2px solid #e50914; margin-bottom: 24px; }
.service-hero h2 { font-size: 2rem; color: #ffffff; margin: 6px 0; }
.service-hero p { opacity: 0.9; }

.service-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; margin-bottom: 30px; }
@media (max-width: 900px) { .service-grid { grid-template-columns: 1fr; } }

.card { background: #1e1e1e; border: 1px solid #2a2a2a; border-radius: 14px; padding: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.6); }
.card h3 { color: #e50914; margin-bottom: 10px; }

.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li { padding-left: 28px; position: relative; margin: 10px 0; }
.feature-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #e50914; font-weight: 700; }

.service-image { width: 100%; height: 320px; object-fit: cover; border-radius: 12px; margin-bottom: 12px; border: 4px solid #2a2a2a; }

.price-card .price { font-size: 2rem; font-weight: 800; margin: 6px 0; }
.price-card .sub { opacity: 0.8; font-size: 0.95rem; margin-bottom: 12px; }
.price-card .btn { display: block; text-align: center; margin-top: 12px; }

.btn { display: inline-block; background: #e50914; color: #fff; padding: 12px 18px; border-radius: 10px; text-decoration: none; font-weight: 700; transition: background 0.25s, transform 0.2s; }
.btn:hover { background: #b0060f; transform: translateY(-2px); }

.badge { display: inline-block; padding: 6px 10px; border: 1px solid #e50914; border-radius: 999px; font-size: 0.85rem; color: #e50914; margin: 4px 6px 0 0; }

.faq .q { font-weight: 700; margin: 10px 0 6px; }
.faq .a { opacity: 0.9; margin-bottom: 12px; }

/* Brand logo link */
header h1 a { color: #e50914; text-decoration: none; }
header h1 a:visited { color: #e50914; }
header h1 a:hover { color: #ffffff; }
header h1 a:active { color: #e50914; }

/* Three‑column film comparison */
.compare-section { margin: 30px auto; }
.compare-header { text-align: center; margin-bottom: 16px; }
.compare-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 20px;
}
@media (max-width: 980px) { .compare-grid { grid-template-columns: 1fr; } }


.compare-card {
background: #1e1e1e;
border: 1px solid #2a2a2a;
border-radius: 14px;
padding: 20px;
box-shadow: 0 4px 10px rgba(0,0,0,0.6);
}
.compare-card h3 { color: #e50914; margin-bottom: 10px; font-size: 1.2rem; }
.compare-card .feature-list { list-style: none; padding: 0; margin: 0; }
.compare-card .feature-list li { padding-left: 26px; position: relative; margin: 10px 0; }
.compare-card .feature-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: #e50914; font-weight: 700; }
.compare-card .btn { display: inline-block; margin-top: 12px; }