/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #111;
  background-color: #ffffff;
  line-height: 1.6;
}

/* =========================
   VARIABLES
========================= */
:root {
  --yellow: #FFD700;
  --black: #111111;
  --white: #ffffff;
  --gray: #f5f5f5;
}

/* =========================
   CONTAINERS & LAYOUT
========================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

.center {
  text-align: center;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: var(--white);
  border-bottom: 1px solid #eaeaea;
  padding: 20px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo span {
  color: var(--yellow);
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
}

nav a:hover {
  color: var(--yellow);
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary {
  background: var(--yellow);
  color: var(--black);
}

.primary:hover {
  background: #e6c200;
}

.secondary {
  border: 2px solid var(--yellow);
  color: var(--black);
  margin-left: 10px;
}

.secondary:hover {
  background: var(--yellow);
}

/* =========================
   HERO SECTION
========================= */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* =========================
   CARDS & LISTS
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.card {
  background: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* =========================
   FORMS
========================= */
form {
  max-width: 500px;
  margin-top: 30px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 15px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button {
  border: none;
  cursor: pointer;
}

/* =========================
   FOOTER
========================= */
footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0;
  margin-top: 80px;
}

footer p,
footer a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
}

/* =========================
   ANIMATIONS
========================= */
.section {
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
  }

  nav a {
    margin: 10px;
  }

  .hero h1 {
    font-size: 32px;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.contact-info {
  background: var(--gray);
  padding: 30px;
  border-radius: 8px;
}

.contact-info h3 {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT PAGE LAYOUT
========================= */

.section-intro {
  max-width: 700px;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.contact-info {
  background: #f5f5f5;
  padding: 35px;
  border-radius: 10px;
}

.contact-info h3 {
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-note {
  font-size: 14px;
  color: #555;
}

/* FORM */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-form textarea {
  margin-top: 20px;
  min-height: 140px;
}

.contact-form button {
  margin-top: 25px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.contact-hero {
  background: #000;
  color: #FFD700;
  padding: 80px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 42px;
}

.contact-subheading {
  color: #FFD700;
  margin-bottom: 10px;
}

.contact-intro {
  max-width: 700px;
  margin-bottom: 50px;
  color: #555;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

/* LEFT COLUMN */
.contact-details h3 {
  margin-bottom: 25px;
}

.contact-details p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.business-hours {
  margin-top: 30px;
}

.business-hours h4 {
  margin-bottom: 10px;
}

/* RIGHT COLUMN FORM */
.contact-form-box {
  border: 1px solid #eee;
  padding: 35px;
  border-radius: 10px;
}

.contact-form-box h3 {
  margin-bottom: 25px;
  color: #FFD700;
}

.contact-form-box label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form-box textarea {
  min-height: 120px;
}

/* Button full width */
.btn.full {
  width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 32px;
  }
}
.logo img {
  height: 80px;
  width: auto;
  display: block;
}

