/* Reset basic */
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    color: #000000; 
    background-color: #ffffff; 
    line-height: 1.6;
}

/* Header */
header {
    background: #f5a700; 
    color: rgba(214, 214, 214, 0.719);
    padding: 5px; 
    text-align: center;
}

header .logo a {
    color: rgb(0, 0, 0);
    font-size: 16px; 
    font-weight: bold;
    text-decoration: none;
}

nav ul {
    list-style: none;
    margin: 5px 0; 
}

nav li {
    display: inline;
    margin: 0 8px; 
}

nav a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-size: 14px; 
}

/* Welcome Section */
.welcome {
    text-align: center;
    padding: 40px 20px;
    background-color: #b80000; 
}

.welcome h1 {
    color: #f4ff60; 
    margin-bottom: 15px;
}

.welcome p {
    color: #f4ff60; 
}

/* Sections */
section {
    padding: 20px;
    text-align: center;
}

section h2 {
    margin-bottom: 15px;
    color: #000000; 
}

/* Services Section */
.services {
    margin-bottom: 30px;
}

.service {
    display: inline-block;
    margin: 10px;
    padding: 20px;
    max-width: 300px;
    text-align: center;
    vertical-align: top;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    color: rgb(0, 0, 0);
    text-shadow: 1px 1px 3px rgba(167, 0, 0, 0.7);
    border-radius: 5px;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.service h3, .service p {
    position: relative;
    z-index: 2;
}

/* Background images for services */
.service.flight-booking {
    background-image: url('images/flight-bg.jpg');
}

.service.hotel-booking {
    background-image: url('images/hotel-bg.jpg');
}

.service.tour-packages {
    background-image: url('images/tour-bg.jpg');
}

/* Destinations Section */
.destinations {
    margin-bottom: 30px;
}

.destination {
    display: inline-block;
    margin: 10px;
    text-align: center;
    vertical-align: top;
}

.destination img {
    width: 120px;
    height: 120px;
    display: block;
    margin: 0 auto 5px auto;
    border: 2px solid #990000; 
    border-radius: 5px;
    object-fit: cover; 
}

.destination h3 {
    color: #000000; 
}

/* Footer */
footer {
    background: #b80000; 
    color: white;
    text-align: center;
    padding: 10px; 
    margin-top: 20px;
}

footer .contact {
    max-width: 400px; 
    margin: 0 auto;
}

footer .contact h4 {
    margin-bottom: 10px;
    color: #ffffff; 
}

footer .contact p {
    margin: 5px 0;
}

/* Feedback Page Styles */
.feedback-section {
  padding: 40px 20px;
  background-color: #f0f0f0;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.card {
  background: #fcd600;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 16px;       
  flex: 1 1 35%;       
  min-width: 260px;    
}

.feedback-form h2,
.feedback-info h2 {
  color: #000000;
  margin-bottom: 20px;
}

.feedback-form label {
  display: block;
  margin-top: 12px;
  font-weight: bold;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border: 1px solid #dadada;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.feedback-form textarea {
  resize: none;
}

.feedback-form .btn {
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  background-color: #d4b28c;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.feedback-form .btn:hover {
  background-color: #ad470c;
}

.feedback-info p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.nudge-right-100 {
  margin-left: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .two-col {
    flex-direction: column;
  }

  .nudge-right-100 {
    margin-left: 0;
  }
}
