/* Base Styles */
:root {
  /* Color Palette */
  --primary-color: #d62828; /* Bold Red */
  --secondary-color: #ffffff; /* Pure White */
  --accent-color: #1c1c1c; /* Dark Gray */
  --light-color: #f5f5f5; /* Light Gray (Silver) */
  --dark-color: #2e2e2e; /* Deeper Dark Gray for text */
  --gray-color: #a8a8a8; /* Neutral Gray for borders or icons */
  --silver-color: #f5f5f5; /* Used for soft backgrounds */

  /* Layout Settings */
  --header-height: 80px;
  --nav-height: 50px;

  /* Transitions & Effects */
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
  text-align: center;
  font-size: 16px;
  box-shadow: 0 2px 5px rgba(230, 57, 70, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn:hover {
  background-color: #c01f1f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(230, 57, 70, 0.4);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-header p {
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background-color: var(--primary-color);
  height: var(--header-height);
  display: flex;
  align-items: center;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
}

.logo i {
  font-size: 24px;
  margin-right: 10px;
  color: var(--light-color);
}

.logo h1 {
  font-size: 28px;
  color: white;
  font-weight: 700;
  letter-spacing: 1px;
  transition: var(--transition);
  margin: 0;
}

.logo span {
  color: var(--light-color);
  font-weight: 300;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.icon-box {
  position: relative;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.icon-box:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.icon-box i {
  font-size: 18px;
  color: #ffffff;
}

/* FIXED: Phone box styling to match other elements */
.phone-box {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 14px; /* Reduced from 16px */
  font-weight: 600; /* Reduced from bold */
  transition: var(--transition);
  padding: 8px 12px; /* Added padding to match other elements */
  background: rgba(255, 255, 255, 0.1); /* Added background to match icon-box */
  border-radius: 20px; /* Added border radius */
  height: 40px; /* Match icon-box height */
}

.phone-box:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.2); /* Match icon-box hover */
}

.phone-box i {
  font-size: 16px; /* Reduced from 20px */
  color: #ffffff;
}

/* Navigation Styles */
nav {
  background-color: var(--accent-color);
  height: var(--nav-height);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 999;
}

nav .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  height: 100%;
  gap: 2px;
}

nav ul li {
  position: relative;
  height: 100%;
}

nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  color: white;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 70%;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}

nav ul li a.active {
  font-weight: 600;
}

/* Mobile navigation */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
}

/* Contact Banner */
.contact-banner {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://via.placeholder.com/1920x400");
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0 60px;
  position: relative;
}

.contact-banner h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.contact-banner p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.breadcrumbs {
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumbs a {
  color: white;
  opacity: 0.8;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
  opacity: 1;
}

/* Contact Content */
.contact-content {
  padding: 80px 0;
  background-color: var(--light-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
}

/* Contact Form */
.contact-form-container {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.form-header {
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 28px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.form-header p {
  color: #666;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--accent-color);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 16px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 2px rgba(214, 40, 40, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

.phone-field {
  position: relative;
}

.phone-field .form-control {
  padding-left: 50px;
}

.phone-field .country-code {
  position: absolute;
  left: 1px;
  top: 1px;
  bottom: 1px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-right: 1px solid #ddd;
  border-radius: 7px 0 0 7px;
  font-weight: 500;
}

.form-actions {
  margin-top: 30px;
}

.form-status {
  padding: 15px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  display: none;
}

.form-status.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-status.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* Contact Info - WHITE BACKGROUND */
.contact-info-container {
  background-color: #ffffff !important;
  color: #333333 !important;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  background-color: #ffffff !important;
  color: #333333 !important;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 30px;
  height: 100%;
  border: 1px solid #e0e0e0;
}

.info-card h3 {
  font-size: 24px;
  color: var(--accent-color) !important;
  margin-bottom: 15px;
}

.info-card p {
  color: #666 !important;
  margin-bottom: 25px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-details .icon-box {
  background-color: rgba(214, 40, 40, 0.1);
  color: var(--primary-color);
  margin-right: 15px;
  box-shadow: none;
  flex-shrink: 0;
}

.contact-details .icon-box i {
  color: var(--primary-color);
}

.detail h4 {
  font-size: 18px;
  margin-bottom: 5px;
  color: var(--accent-color) !important;
}

.detail p {
  margin-bottom: 0;
  color: #666 !important;
}

.detail a {
  color: #666 !important;
}

.detail a:hover {
  color: var(--primary-color) !important;
}

.social-connect {
  margin-top: 30px;
}

.social-connect h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--accent-color) !important;
}

.social-connect .social-icons {
  justify-content: flex-start;
}

.social-connect .icon-box {
  background-color: rgba(214, 40, 40, 0.1);
}

.social-connect .icon-box i {
  color: var(--primary-color);
}

.social-connect .icon-box:hover {
  background-color: var(--primary-color);
}

.social-connect .icon-box:hover i {
  color: white;
}

/* Map Section */
.map-section {
  padding: 80px 0 0;
  background-color: white;
}

#map {
  height: 500px;
  width: 100%;
  margin-top: 40px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 18px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background-color: var(--light-color);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(214, 40, 40, 0.1);
}

.faq-question h3 {
  font-size: 18px;
  color: var(--accent-color);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: white;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 1000px;
}

/* Newsletter Section */
.newsletter {
  padding: 60px 0;
  background-color: var(--accent-color);
  color: white;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.newsletter-text {
  flex: 1;
  min-width: 300px;
}

.newsletter-text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.newsletter-text p {
  opacity: 0.8;
}

.newsletter-form {
  flex: 1;
  min-width: 300px;
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  font-size: 16px;
}

.newsletter-form .btn {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 0 25px;
}

/* Footer Styles */
footer {
  background-color: var(--dark-color);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 30px;
  padding-right: 20px;
}

.footer-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-section p {
  margin-bottom: 15px;
  line-height: 1.8;
  opacity: 0.8;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: white;
  opacity: 0.8;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info li i {
  margin-right: 10px;
  margin-top: 5px;
  color: var(--primary-color);
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 24px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: white;
  opacity: 0.8;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--primary-color);
  opacity: 1;
}

