* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

body {
background: #111;
color: #fff;
}

.container {
width: 90%;
max-width: 1200px;
margin: auto;
}

.top-bar {
background: #C9A227;
color: #111;
text-align: center;
padding: 10px;
font-weight: 600;
}

.header {
background: #000;
padding: 20px 0;
}

.nav {
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
font-size: 22px;
font-weight: 700;
color: #C9A227;
}

.logo span {
color: #fff;
}

nav a {
color: #fff;
margin: 0 15px;
text-decoration: none;
font-weight: 500;
}

.call-btn {
background: linear-gradient(45deg, #C9A227, #E6C35C);
padding: 10px 20px;
color: #111;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
}

.hero {
height: 90vh;
background: url('images/repair.jpg') center/cover no-repeat;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}

.hero-overlay {
background: rgba(0,0,0,0.7);
padding: 40px;
border-radius: 10px;
}

.hero h1 {
font-size: 20px;
margin-bottom: 20px;
}

.primary-btn {
display: inline-block;
background: linear-gradient(45deg, #C9A227, #E6C35C);
color: #111;
padding: 15px 25px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
}

.services {
padding: 80px 0;
text-align: center;
}

.services h2 {
margin-bottom: 40px;
color: #C9A227;
}

.service-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.service-card {
background: #1a1a1a;
padding: 20px;
border-radius: 10px;
box-shadow: 0 5px 20px rgba(0,0,0,0.5);
transition: 0.3s;
}

.service-card:hover {
transform: translateY(-5px);
}

.service-card img {
width: 100%;
border-radius: 8px;
margin-bottom: 15px;
}

.reviews {
background: #000;
padding: 80px 0;
text-align: center;
}

.review-card {
background: #1a1a1a;
padding: 25px;
margin: 20px auto;
max-width: 600px;
border-radius: 10px;
}

.stars {
color: #C9A227;
margin: 10px 0;
}

.contact {
padding: 80px 0;
text-align: center;
}

form {
display: flex;
flex-direction: column;
gap: 15px;
max-width: 600px;
margin: auto;
}

input, textarea {
padding: 12px;
border-radius: 6px;
border: none;
}

footer {
background: #000;
padding: 20px;
text-align: center;
margin-top: 50px;
}

.hero-media{
  height: 240px;          /* desktop height (make smaller if you want) */
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.hero-media img{
  width: 100%;
  height: 50%;
  object-fit: cover;      /* keeps it nice, crops edges */
  display: block;
}

/* Phone */
@media (max-width: 768px){
  .hero-media{
    height: 320px;        /* phone height */
  }
}

/* ===== MAP ===== */
.map-shell{
  background: linear-gradient(180deg, rgba(18,18,21,0.92), rgba(18,18,21,0.82));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}

.map-embed{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(214,177,94,0.18);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
}

.map-embed iframe{
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

@media (max-width: 768px){
  .map-embed iframe{
    height: 320px;
  }
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call{
  position: fixed !important;
  right: 18px !important;
  bottom: 18px !important;
  width: 66px;
  height: 66px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(214,177,94,0.92), rgba(214,177,94,0.55));
  border: 1px solid rgba(255,255,255,0.12);
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 34px rgba(0,0,0,0.55);
  z-index: 999999;
  transform: translateZ(0);
  -webkit-tap-highlight-color: transparent;
}

.floating-call svg{
  width: 30px;
  height: 30px;
  fill: #111;
}

@media (max-width: 768px){
  .floating-call{
    width: 72px;
    height: 72px;
    right: 16px !important;
    bottom: 90px !important; /* lifts it above iPhone Safari bar */
  }
}