/* Base Styles */
:root {
  --primary: #e63946; /* Red accent color */
  --primary-dark: #c1121f;
  --dark-bg: #121212;
  --dark-surface: #1e1e1e;
  --dark-surface-light: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #b3b3b3;
  --border-color: #333333;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Agdasima', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

/* Hero Banner */
.zhomebanner {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zbannercontent {
  position: relative;
  width: 100%;
  height: 100%;
}

.zbannerimage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.bannerlogo {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 70px;
  z-index: 10;
}

.glass-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 14px;
  z-index: 10;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.glass-btn:hover {
  background: rgba(230, 57, 70, 0.3);
  transform: translateY(-2px);
}

.glass-btn::after {
  content: '➜';
  margin-left: 8px;
  transition: var(--transition);
}

.glass-btn:hover::after {
  transform: translateX(3px);
}

.search-bar {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px;
  width: 90%;
  max-width: 600px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* .search-bar select {
  flex: 1;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  color: var(--text-primary) !important;
  background: var(--dark-surface) !important;
}

select option {
  background: var(--dark-surface);
  color: var(--text-primary);
  padding: 10px;
}

.search-bar select:focus {
  outline: none;
  background-color: var(--dark-surface);
} */

.search-bar select {
  flex: 1;
  padding: 12px 20px;
  border: none;
  font-size: 14px;
  color: var(--text-primary);
  background: var(--dark-surface);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 14px;
  border-radius: 4px;
  cursor: pointer;
}

/* For Firefox */
@-moz-document url-prefix() {
  .search-bar select {
    color: white !important;
    text-shadow: 0 0 0 white;
    background-color: var(--dark-surface) !important;
  }
}

/* For IE10+ */
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .search-bar select {
    color: white;
    background-color: var(--dark-surface);
  }
}

/* Dropdown options styling */
.search-bar select option {
  background: var(--dark-surface);
  color: var(--text-primary);
  padding: 10px;
}

/* Focus state */
.search-bar select:focus {
  outline: none;
}

/* Dropdown hover state */
.search-bar select:hover {
  background-color: var(--dark-surface-light);
}

.search-bar button {
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition);
}

.search-bar button:hover {
  background: var(--primary-dark);
}

.bannertitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 4rem;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 10px;
}

/* Why Choose Us Section */
.zhomewhy {
  display: flex;
  flex-direction: column;
  background: var(--dark-surface);
  padding: 60px 0;
}

.whyimage {
  padding: 0 20px;
  margin-bottom: 40px;
}

.whyimage img {
  display: block;
  margin: 0 auto;
  max-width: 600px;
  width: 100%;
}

.whycontent {
  padding: 0 20px;
}

.whycontent .content {
  background: var(--dark-surface-light);
  padding: 40px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.whycontent h1 {
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 0;
  left: 20px;
  line-height: 1;
}

.whycontent h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
}

.whycontent p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

/* After Sales Section */
.zaftersales {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./mainimg.png') no-repeat center center/cover;
  padding: 100px 20px;
  text-align: center;
}

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

.zaftersales h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
}

.zaftersales hr {
  width: 100px;
  height: 3px;
  background: var(--primary);
  border: none;
  margin: 20px auto;
}

.zaftersales p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.zaftersales p:first-of-type {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.3rem;
}

/* Process Section */
.process-section {
  display: flex;
  flex-direction: column;
  background: var(--dark-surface);
  padding: 60px 0;
}

.process-container {
  padding: 0 20px;
  margin-bottom: 40px;
}

.process-container h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: white;
  text-align: center;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.step {
  background: var(--dark-surface-light);
  padding: 25px;
  border-radius: 8px;
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.step span {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: var(--primary);
  color: white;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  margin-right: 10px;
  font-weight: bold;
}

.image-container {
  padding: 0 20px;
  text-align: center;
}

.image-container img {
  max-width: 500px;
  width: 100%;
}

/* Procedure Section */
.procedure-section {
  display: flex;
  flex-direction: column;
  background: var(--dark-surface-light);
  padding: 60px 0;
}

.procedure-container {
  padding: 0 20px;
  order: 2;
}

.procedure-container ul {
  list-style: none;
}

.procedure-container li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
}

.procedure-container li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
}

.title-container {
  padding: 0 20px;
  margin-bottom: 40px;
  order: 1;
}

.title-container h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
}

/* Footer */
/* Footer Styles */
.site-footer {
  background-color: #121212;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  border-top: 1px solid #2a2a2a;
}

.footer-main {
  padding: 60px 0;
  background-color: #1e1e1e;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-col {
  margin-bottom: 30px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-title {
  font-family: 'Agdasima', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #ffffff;
  position: relative;
  padding-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #e63946;
}

.footer-description {
  color: #b3b3b3;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-menu {
  list-style: none;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-menu a {
  color: #b3b3b3;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-menu a:hover {
  color: #e63946;
  padding-left: 5px;
}

.footer-menu i {
  margin-right: 8px;
  font-size: 0.7rem;
  color: #e63946;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  margin-bottom: 15px;
  color: #b3b3b3;
  font-size: 0.95rem;
  line-height: 1.6;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 15px;
  color: #e63946;
  font-size: 1rem;
  margin-top: 3px;
}

.footer-newsletter {
  margin-top: 30px;
}

.footer-newsletter h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  background: #2a2a2a;
  color: #ffffff;
  font-size: 0.9rem;
}

.newsletter-form input:focus {
  outline: none;
  background: #333333;
}

.newsletter-form button {
  background: #e63946;
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.newsletter-form button:hover {
  background: #c1121f;
}

.footer-bottom {
  padding: 25px 0;
  background-color: #121212;
  border-top: 1px solid #2a2a2a;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-copyright {
  color: #b3b3b3;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.footer-legal {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-legal a {
  color: #b3b3b3;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #e63946;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: #e63946;
  transform: translateY(-3px);
}




/* Responsive Styles */
@media (min-width: 768px) {
  .zhomewhy {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .whyimage {
    flex: 1;
    padding: 60px;
    margin-bottom: 0;
  }

  .whycontent {
    flex: 1;
    padding: 60px;
  }

  .whycontent .content {
    padding: 60px;
  }

  .whycontent h1 {
    font-size: 8rem;
  }

  .whycontent h2 {
    font-size: 3rem;
  }

  .process-section {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .process-container {
    flex: 1;
    padding: 60px;
    margin-bottom: 0;
  }

  .image-container {
    flex: 1;
    padding: 60px;
  }

  .procedure-section {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .procedure-container {
    flex: 1;
    padding: 60px;
    order: 1;
  }

  .title-container {
    flex: 1;
    padding: 60px;
    order: 2;
  }

  .title-container h2 {
    text-align: right;
  }
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-copyright {
    margin-bottom: 0;
  }
  
  .footer-legal {
    margin-bottom: 0;
  }
}

@media (max-width: 576px) {
  .bannertitle {
    font-size: 2.5rem;
    letter-spacing: 5px;
  }

  .whycontent h1 {
    font-size: 4rem;
  }

  .whycontent h2 {
    font-size: 2rem;
  }

  .zaftersales h1 {
    font-size: 2.5rem;
  }

  .process-container h2,
  .title-container h2 {
    font-size: 2rem;
  }

  .footer-menu li, 
  .footer-contact li {
    margin-bottom: 10px;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}