/* General Styling & Variables */
:root {
  --primary-color: #0b132b;
  --accent-color: #c5a059;
  --light-bg: #f8f9fa;
  --dark-text: #1c2541;
  --muted-text: #6c757d;
  --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--dark-text);
  line-height: 1.6;
  background-color: #fff;
}

/* Header & Navigation */
header {
  background-color: var(--primary-color);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-bar {
  background-color: #050814;
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #ccc;
}

.top-bar a {
  color: var(--accent-color);
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: 1px;
}

.logo span {
  color: var(--accent-color);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(11, 19, 43, 0.75), rgba(11, 19, 43, 0.75)),
              url('images/comfortairlimo.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 25px;
  color: #e0e0e0;
}

.btn-primary {
  display: inline-block;
  background-color: var(--accent-color);
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #a88241;
}

/* Page Banner */
.page-banner {
  background-color: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.page-banner h1 {
  font-size: 2.2rem;
  color: var(--accent-color);
}

/* Content Container */
.container {
  width: 90%;
  max-width: 1100px;
  margin: 40px auto;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  align-items: center;
}

/* Card Components */
.card {
  background: var(--light-bg);
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card h3 {
  margin-bottom: 12px;
  color: var(--primary-color);
}

.fleet-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.fleet-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.fleet-card-body {
  padding: 20px;
}

.fleet-card-body h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Contact Form */
.contact-form {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: #a0aec0;
  padding: 40px 5% 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-grid h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-grid a {
  color: #a0aec0;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-grid a:hover {
  color: var(--accent-color);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #2d3748;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .navbar {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
}

.form-container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}

form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

form input, form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #00466E;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

form button:hover {
    background-color: #0071B3;
}

.book-btn{
    display:inline-block;
    background:#00466E;
    padding:14px 30px;
    text-decoration:none;
    border-radius:6px;
    font-size:18px;
    font-weight:bold;
    transition:0.3s;
	width: 100%
}

.book-btn:hover{
    background:#0071B3;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}



