/* ===============================
   THEME VARIABLES (CHANGE HERE)
================================ */
:root {
  --primary-color: #FF0000;    /* Main Brand Color */
  --secondary-color: #FF0000;  /* Gradient / Highlights */
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f4f7fb;
  --bg-white: #ffffff;
  --border-light: #e5e7eb;
}

/* ===============================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

/* ===============================
   COMMON CONTAINER
================================ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===============================
   HEADER / NAVBAR
================================ */
header {
  background: var(--primary-color);
  color: var(--text-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.nav h1 {
  font-size: 1.4rem;
}

nav a {
  color: var(--text-light);
  margin-left: 18px;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* ===============================
   HERO SECTION
================================ */
.hero {
  background: linear-gradient(
    to right,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--text-light);
  padding: 90px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}

.hero p {
  max-width: 800px;
  margin: auto;
  font-size: 1.05rem;
  opacity: 0.95;
}

.hero-buttons {
  margin-top: 30px;
}

/* ===============================
   BUTTONS
================================ */
.btn {
  background: var(--text-light);
  color: var(--primary-color);
  padding: 12px 22px;
  margin: 8px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

/* ===============================
   ABOUT SECTION
================================ */
.about {
  padding: 60px 0;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about p {
  max-width: 900px;
  margin: auto;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* ===============================
   SERVICES SECTION
================================ */
.services {
  background: var(--bg-light);
  padding: 60px 0;
}

.services h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background: var(--bg-white);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: 0.3s ease;
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===============================
   WHY CHOOSE US
================================ */
.why {
  padding: 60px 0;
  text-align: center;
}

.why h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.why p {
  max-width: 850px;
  margin: auto;
  margin-bottom: 25px;
}

.why ul {
  list-style: none;
}

.why li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* ===============================
   RENT SECTION
================================ */
.rent {
  background: var(--primary-color);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.rent h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.rent p {
  max-width: 900px;
  margin: auto;
  margin-bottom: 10px;
}

/* ===============================
   CONTACT SECTION
================================ */
.contact {
  padding: 60px 0;
}

.contact h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 35px;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info p {
  margin-bottom: 10px;
  font-size: 1rem;
}

.info a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
}

form input,
form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 5px;
  border: 1px solid var(--border-light);
  font-size: 0.95rem;
}

form input:focus,
form select:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* ===============================
   MAP
================================ */
iframe {
  width: 100%;
  height: 320px;
  border: 0;
  margin-top: 25px;
  border-radius: 8px;
}

/* ===============================
   FOOTER
================================ */
footer {
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 18px;
  font-size: 0.9rem;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.9rem;
  }

  .contact-box {
    grid-template-columns: 1fr;
  }

  nav a {
    margin-left: 12px;
  }
}
