:root {
  --primary: #11bdec;
  --secondary: #f8f9fa;
  --accent: #4ccff0;
  --dark: #333333;
  --light: #ffffff;
  --success: #28a745;
  --warning: #ffc107;
  --container-width: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--secondary);
  color: var(--dark);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}
header {
  background: rgba(0, 0, 0, 0.95);
  color: var(--light);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
header.scrolled {
  background: rgba(0, 0, 0, 0.98);
  padding: 0.8rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  transition: all 0.3s ease;
}
.logo {
  font-size: 2.5rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}
.logo:hover {
  transform: translateY(-2px);
}
.logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: contrast(110) brightness(0.99) drop-shadow(0 0 2px rgba(0,0,0,0.5));
  transition: all 0.3s ease;
  animation: logoFloat 3s ease-in-out infinite;
}
.logo:hover img {
  transform: scale(1.05) rotate(5deg);
  filter: contrast(110) brightness(1.1) drop-shadow(0 0 4px rgba(17, 189, 236, 0.5));
}
.logo span {
  position: relative;
  transition: all 0.3s ease;
}
.logo span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
}
.logo:hover span::after {
  width: 100%;
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
nav {
  display: flex;
  gap: 2rem;
  position: relative;
}
nav a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}
nav a:hover::before {
  width: 80%;
}
nav a.active {
  color: var(--primary);
}
nav a.active::before {
  width: 80%;
}
.hero {
  margin-top: 0;
  background: #000000;
  color: var(--light);
  padding: 0;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
}
.hero-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}
.hero-content {
  text-align: left;
  padding-right: 3rem;
  max-width: 800px;
}
.hero-image {
  position: relative;
  height: 100% !important;
  min-height: 500px !important;
  max-height: 700px !important;
  overflow: hidden;
  width: 100% !important;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 175% !important;
  height: 175% !important;
  object-fit: contain !important;
  border: none;
  display: block;
  transform: scale(1.05);
}
.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content h1 .static-text {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-content h1 .animated-text {
  display: block;
  overflow: hidden;
  border-right: 3px solid var(--primary);
  white-space: nowrap;
  animation: typing 10s steps(40, end) infinite,
             blink-caret .5s step-end infinite;
  margin-bottom: 0.3rem;
}

.hero-content h1 .warranty-text {
  display: block;
  font-size: 2.8rem;
  color: var(--primary);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-content .cta-button {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(17, 189, 236, 0.3);
}

.hero-content .cta-button:hover {
  transform: translateY(-3px);
  background: var(--accent);
  box-shadow: 0 6px 20px rgba(17, 189, 236, 0.4);
}

.services {
  padding: 3rem 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service-card {
  background: var(--light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.service-card h3 {
  margin: 1rem 0;
  color: var(--dark);
}
.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.service-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--light);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
  border: 2px solid var(--primary);
}
.service-btn:hover {
  background: transparent;
  color: var(--primary);
}
.why-choose-us {
  background: var(--light);
  padding: 3rem 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}
.why-choose-us-container {
  max-width: var(--container-width);
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.feature i {
  font-size: 1.5rem;
  color: var(--success);
}
.contact-section {
  padding: 3rem 2rem;
  background: var(--secondary);
  max-width: var(--container-width);
  margin: 0 auto;
}
.contact-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.contact-info {
  padding: 2rem;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.contact-form {
  padding: 2rem;
  background: var(--light);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
}
.submit-btn {
  background: var(--primary);
  color: var(--light);
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(17, 189, 236, 0.3);
}
.submit-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 189, 236, 0.4);
}
footer {
  background: var(--dark);
  color: var(--light);
  padding: 2rem 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}
.footer-container {
  max-width: var(--container-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer-section h3 {
  margin-bottom: 1rem;
  color: var(--primary);
}
.footer-section ul {
  list-style: none;
}
.footer-section ul li {
  margin-bottom: 0.5rem;
}
.footer-section a {
  color: var(--light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer-section a:hover {
  opacity: 1;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-links a {
  color: var(--light);
  font-size: 1.5rem;
}
@keyframes typing {
  0% { width: 0 }
  50% { width: 100% }
  100% { width: 0 }
}
@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: var(--primary) }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 0.5rem;
    width: 100%;
  }
  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
  }
  .hero {
    min-height: 100vh;
    margin-top: 0;
    width: 100vw;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background: #000000;
  }
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 1rem 2rem 1rem;
    gap: 0.5rem;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-content {
    text-align: center;
    padding: 0 1rem;
    max-width: 100%;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0.5rem;
    padding-top: 2rem;
  }
  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content h1 .static-text {
    display: none;
  }
  .hero-content h1 .animated-text {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--primary);
    white-space: nowrap;
    animation: typing 10s steps(40, end) infinite,
               blink-caret .5s step-end infinite;
    margin: 0.5rem 0;
    width: 100%;
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary);
    min-height: 3rem;
    line-height: 1.2;
    padding: 0 1rem;
    margin-top: 2.5rem;
  }
  @keyframes typing {
    0% { width: 0 }
    50% { width: 100% }
    100% { width: 0 }
  }
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary) }
  }
  .hero-content h1 .warranty-text {
    display: none;
  }
  .hero-content p {
    display: none;
  }
  .hero-image {
    height: 400px !important;
    min-height: 300px !important;
    max-height: 500px !important;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    transform: scale(1);
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-content .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
  }
  .cta-desktop {
    display: none !important;
  }
  .cta-mobile {
    display: block !important;
    width: auto;
    padding: 1rem 2rem;
    font-size: 1rem;
    background: var(--primary);
    color: var(--light);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(17, 189, 236, 0.3);
    margin: 1.5rem auto 0 auto;
    text-align: center;
  }
  .cta-mobile:hover {
    transform: translateY(-3px);
    background: var(--accent);
    box-shadow: 0 6px 20px rgba(17, 189, 236, 0.4);
  }
}
@media (min-width: 769px) {
  .cta-mobile {
    display: none !important;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
    background: #000000;
  }
  .hero-container {
    padding: 5rem 1rem 2rem 1rem;
    gap: 0.3rem;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-content {
    padding: 0 1rem;
    margin: 0;
    margin-bottom: 0.3rem;
    padding-top: 1.5rem;
  }
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content h1 .static-text {
    display: none;
  }
  .hero-content h1 .animated-text {
    display: inline-block;
    overflow: hidden;
    border-right: 3px solid var(--primary);
    white-space: nowrap;
    animation: typing 10s steps(40, end) infinite,
               blink-caret .5s step-end infinite;
    margin: 0.3rem 0;
    width: 100%;
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary);
    min-height: 2.5rem;
    line-height: 1.2;
    padding: 0 1rem;
    margin-top: 2rem;
  }
  @keyframes typing {
    0% { width: 0 }
    50% { width: 100% }
    100% { width: 0 }
  }
  @keyframes blink-caret {
    from, to { border-color: transparent }
    50% { border-color: var(--primary) }
  }
  .hero-content h1 .warranty-text {
    display: none;
  }
  .hero-content p {
    display: none;
  }
  .hero-image {
    height: 300px !important;
    min-height: 250px !important;
    max-height: 350px !important;
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
  }
  .hero-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .hero-content .cta-button {
    margin-top: 1rem;
  }
  .cta-desktop {
    display: none !important;
  }
  .cta-mobile {
    display: block !important;
    width: auto;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
    background: var(--primary);
    color: var(--light);
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(17, 189, 236, 0.3);
    margin: 1.2rem auto 0 auto;
    text-align: center;
  }
  .cta-mobile:hover {
    transform: translateY(-3px);
    background: var(--accent);
    box-shadow: 0 6px 20px rgba(17, 189, 236, 0.4);
  }
}
@media (min-width: 1600px) {
  :root {
    --container-width: 1400px;
  }
  .hero {
    min-height: 100vh;
  }
  .hero-container {
    gap: 4rem;
    padding: 6rem 2rem;
    max-width: 1400px;
  }
  .hero-content {
    padding-right: 4rem;
    max-width: 600px;
  }
  .hero-image {
    height: 75vh !important;
    min-height: 600px !important;
    max-height: 800px !important;
  }
  .hero-image img {
    width: 120% !important;
    height: 120% !important;
    transform: scale(1.2);
  }
  .hero-content h1 {
    font-size: 4rem;
    line-height: 1.2;
  }
  .hero-content h1 .warranty-text {
    font-size: 3.5rem;
  }
  .hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
  }
  .hero-content .cta-button {
    padding: 1.5rem 4rem;
    font-size: 1.2rem;
  }
}
@media (min-width: 2000px) {
  :root {
    --container-width: 1600px;
  }
  .hero-container {
    padding: 8rem 2rem;
    max-width: 1600px;
    gap: 4rem;
  }
  .hero-content {
    padding-right: 4rem;
    max-width: 600px;
  }
  .hero-image {
    height: 80vh !important;
    min-height: 700px !important;
    max-height: 900px !important;
  }
  .hero-image img {
    width: 140% !important;
    height: 140% !important;
    transform: scale(1.4);
  }
  .hero-content h1 {
    font-size: 4.5rem;
  }
  .hero-content h1 .warranty-text {
    font-size: 4rem;
  }
  .hero-content p {
    font-size: 2rem;
  }
}
.team-section {
  background: var(--light);
  padding: 2rem 0;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.team-slider-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.team-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem;
  position: relative;
}
.team-grid::-webkit-scrollbar {
  display: none;
}
.team-member {
  min-width: 300px;
  background: var(--light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.member-image {
  width: 250px;
  height: 250px;
  overflow: hidden;
  border-radius: 50%;
  padding: 0.5rem;
  margin: 0 auto;
  background: var(--light);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 3px solid var(--primary);
  transition: transform 0.3s ease;
}
.member-image img:hover {
  transform: scale(1.05);
}
.member-info {
  padding: 1.5rem;
  text-align: center;
}
.member-info h3 {
  margin-bottom: 0.5rem;
  color: var(--dark);
}
.member-info p {
  color: #666;
  margin-bottom: 1rem;
}
.member-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.member-social a {
  color: var(--primary);
  font-size: 1.2rem;
  transition: color 0.3s;
}
.member-social a:hover {
  color: var(--accent);
}
.reviews-section {
  background: var(--light);
  padding: 2rem 0;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.reviews-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.reviews-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem;
  position: relative;
}
.reviews-grid::-webkit-scrollbar {
  display: none;
}
.review-card {
  width: 300px;
  height: 300px;
  background: var(--light);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.review-header {
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reviewer-info h4 {
  margin: 0;
  color: var(--dark);
  font-size: 1.1rem;
}
.review-stars {
  color: #ffc107;
  font-size: 1rem;
}
.review-text {
  color: #444;
  line-height: 1.5;
  font-size: 0.95rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0.5rem 0;
}
.review-date {
  color: #888;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.slider-controls {
  display: none;
}
.review-controls {
  display: none;
}
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: jump 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
  animation: none;
}
@keyframes jump {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 25px;
    bottom: 20px;
    right: 20px;
  }
}
.about-section {
  background: var(--light);
  padding: 4rem 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
}
.about-container {
  max-width: var(--container-width);
  margin: 0 auto;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h3 {
  color: var(--primary);
  margin: 1.5rem 0 1rem 0;
  font-size: 1.5rem;
}
.about-text p {
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.values-list {
  list-style: none;
  padding: 0;
}
.values-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--dark);
}
.values-list li i {
  color: var(--primary);
  font-size: 1.2rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stat-item {
  text-align: center;
  padding: 2rem;
  background: var(--secondary);
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-5px);
}
.stat-item i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}
.stat-item h4 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.stat-item p {
  color: #666;
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .stat-item {
    padding: 1.5rem;
  }
  .stat-item i {
    font-size: 2rem;
  }
  .stat-item h4 {
    font-size: 1.5rem;
  }
}
/* Brand Showcase Styles */
.brand-showcase {
  background: var(--secondary);
  padding: 2rem 2rem;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.brand-container {
  max-width: var(--container-width);
  margin: 0 auto;
  background: var(--light);
  border-radius: 20px;
  padding: 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

.brand-showcase h2 {
  color: var(--dark);
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  text-align: center;
}

.brand-showcase h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

.swiper {
  width: 100%;
  padding: 1rem 0;
  margin: 0 auto;
}

.swiper-wrapper {
  align-items: center;
}

.swiper-slide {
  width: 160px !important;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  margin-right: 30px !important;
}

.swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.swiper-slide:hover img {
  filter: grayscale(0%);
}

@media (max-width: 768px) {
  .brand-showcase {
    padding: 1.5rem 1rem;
  }
  .brand-container {
    padding: 1.5rem 1rem;
  }
  .swiper-slide {
    width: 120px !important;
    height: 80px;
  }
}
.login-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--accent);
  transition: all 0.3s ease;
  z-index: -1;
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(17, 189, 236, 0.3);
}
.login-btn:hover::before {
  width: 100%;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: var(--light);
  padding: 2rem;
  border-radius: 15px;
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  transition: color 0.3s;
}

.close-modal:hover {
  color: var(--primary);
}

.phone-input {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

.country-code {
  background: #f5f5f5;
  padding: 0.8rem;
  border-right: 1px solid #ddd;
  color: #666;
}

.phone-input input {
  border: none;
  flex: 1;
  padding: 0.8rem;
}

.resend-btn {
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  margin-top: 1rem;
  font-size: 0.9rem;
  text-decoration: underline;
}

.resend-btn:hover {
  color: var(--accent);
}

/* Repair Booking Styles */
.repair-booking {
  background: var(--light);
  padding: 4rem 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  position: relative;
}

.booking-container {
  max-width: var(--container-width);
  margin: 0 auto;
}

.booking-step {
  display: none;
  animation: fadeIn 0.5s ease;
}

.booking-step.active {
  display: block;
}

.issue-grid, .brand-grid, .model-grid {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  flex-direction: row;
  gap: 1rem;
  padding: 1rem;
  margin: 1rem 0;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.issue-grid::-webkit-scrollbar, 
.brand-grid::-webkit-scrollbar, 
.model-grid::-webkit-scrollbar {
  display: none;
}

.issue-card, .brand-card, .model-card {
  background: var(--secondary);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-width: 96px;
  height: 144px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  margin: 1rem 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (min-width: 640px) {
  .issue-card, .brand-card, .model-card {
    min-width: 160px;
    height: 208px;
  }
}

.issue-card:hover, .brand-card:hover, .model-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.issue-card.selected, .brand-card.selected, .model-card.selected {
  border-color: var(--primary);
  background: rgba(255, 107, 0, 0.1);
}

.issue-card img, .brand-card img, .model-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .issue-card img, .brand-card img, .model-card img {
    width: 96px;
    height: 96px;
  }
}

.issue-card span, .brand-card span, .model-card span {
  font-size: 0.875rem;
  text-align: center;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.scroll-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 10;
}

.scroll-button.prev {
  left: -20px;
  top: 60%;
  transform: translateY(-50%);
}

.scroll-button.next {
  right: -20px;
  top: 60%;
  transform: translateY(-50%);
}

.scroll-button svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.scroll-button:hover {
  background: var(--primary);
}

.scroll-button:hover svg {
  color: var(--light);
}

.booking-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}

.nav-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .issue-grid, .brand-grid, .model-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .issue-card, .brand-card, .model-card {
    padding: 1rem;
  }

  .issue-card img, .brand-card img, .model-card img {
    width: 40px;
    height: 40px;
  }
}