/* Styling for Quick Cool Branding */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; color: #333; }
.container { width: 90%; max-width: 1100px; margin: auto; }

/* Navbar Styling */
.navbar { background: #fff; padding: 15px 0; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { height: 100px; }

.nav-links { display: flex; list-style: none; align-items: center; }
.nav-links li { margin-left: 20px; }
.nav-links a { text-decoration: none; color: #333; font-weight: 600; }

.nav-call-btn { background: #ff6600; color: #fff !important; padding: 10px 20px; border-radius: 5px; }

.menu-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }

/* Responsive Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links { 
        display: none; /* Hidden by default on mobile */
        flex-direction: column; 
        position: absolute; 
        top: 80px; 
        left: 0; 
        width: 100%; 
        background: #fff; 
        padding: 20px;
        text-align: center;
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 15px 0; }
}

.hero { 
    background: #004080; 
    color: #c9c8c8; 
    padding: 80px 0; 
    text-align: center; 
}

.hero h1 span { color: #00d4ff; }

.call-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
}

.services { padding: 50px 0; text-align: center; }
.service-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 30px; }
.service-item { padding: 20px; border: 1px solid #ddd; border-radius: 8px; }

@media (max-width: 600px) {
    .navbar { flex-direction: column; }
    .hero { padding: 40px 0; }
}

.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffb400;
  border-bottom: 2px solid #ffb400;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p, 
.footer-col ul {
  font-size: 14px;
  color: #cccccc;
  line-height: 1.6;
  margin: 0 0 10px 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ffb400;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333333;
  font-size: 13px;
  color: #888888;
}