/* =========================
   PREMIUM MODERN STYLE
========================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
  font-family:'Montserrat',sans-serif;
}

body{
  background:#050505;
  color:#fff;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

img{
  width:100%;
  display:block;
}

/* NAVBAR */

.navbar{
  width:100%;
  padding:22px 8%;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
  font-size:36px;
  font-weight:800;
  letter-spacing:2px;
}

.logo span{
  color:#00ffae;
}

.nav-links{
  display:flex;
  list-style:none;
  gap:38px;
}

.nav-links a{
  color:#ddd;
  font-size:15px;
  transition:.3s;
}

.nav-links a:hover{
  color:#00ffae;
}

.call-btn{
  padding:13px 26px;
  border-radius:50px;
  background:#00ffae;
  color:#000;
  font-weight:700;
  transition:.3s;
}

.call-btn:hover{
  transform:translateY(-4px);
}

/* HERO */

.hero{
  min-height:100vh;
  padding:150px 8% 100px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:70px;
  position:relative;
}

.hero::before{
  content:'';
  position:absolute;
  width:500px;
  height:500px;
  background:#00ffae15;
  border-radius:50%;
  filter:blur(120px);
  top:-120px;
  left:-120px;
}

/* .hero-content{
  flex:1;
  position:relative;
  z-index:2;
}

.tag{
  display:inline-block;
  padding:10px 18px;
  border-radius:50px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#00ffae;
  font-size:13px;
  margin-bottom:25px;
}

.hero-content h1{
  font-size:65px;
  line-height:1.1;
  margin-bottom:22px;
  font-weight:800;
}

.hero-content h1 span{
  color:#00ffae;
}

.hero-content p{
  color:#bdbdbd;
  line-height:1.9;
  max-width:570px;
  margin-bottom:35px;
}

.hero-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
  padding:15px 30px;
  border-radius:50px;
  font-weight:700;
  transition:.3s;
}

.primary-btn{
  background:#00ffae;
  color:#000;
}

.secondary-btn{
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-5px);
} */

/* FORM */

.hero-form{
  flex:1;
  display:flex;
  justify-content:flex-end;
  position:relative;
  z-index:2;
  margin-top:20px;
}

.hero-form form{
  width:100%;
  max-width:430px;
  background:linear-gradient(145deg,#111,#1a1a1f);
  border:1px solid rgba(255,255,255,.08);
  padding:40px;
  border-radius:30px;
  box-shadow:0 20px 80px rgba(0,0,0,.5);
}

.hero-form h2{
  text-align:center;
  margin-bottom:28px;
  font-size:30px;
}

.input-box{
  margin-bottom:20px;
}

.input-box input,
.input-box select{
  width:100%;
  height:56px;
  border:none;
  outline:none;
  border-radius:16px;
  background:#0f0f14;
  padding:0 18px;
  color:#fff;
  font-size:14px;
  border:1px solid rgba(255,255,255,.06);
}

.input-box input:focus,
.input-box select:focus{
  border-color:#00ffae;
}

.hero-form button{
  width:100%;
  height:56px;
  border:none;
  border-radius:16px;
  background:#00ffae;
  color:#000;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.hero-form button:hover{
  transform:translateY(-4px);
}

/* SECTION */

section{
  padding:110px 8%;
}

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-title h2{
  font-size:48px;
  margin-bottom:16px;
}

.section-title p{

  color:#bdbdbd;
  max-width:720px;
  margin:auto;
  line-height:1.9;
}

/* ABOUT */

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.about-image img{
  border-radius:30px;
}

.about-content h3{
  font-size:42px;
  margin-bottom:20px;
}

.about-content p{
  color:#c7c7c7;
  line-height:1.9;
  margin-bottom:25px;
}

.about-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.about-card{
  background:#121218;
  padding:28px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.05);
  transition:.3s;
}

.about-card:hover{
  transform:translateY(-8px);
  border-color:#00ffae;
}

.about-card i{
  font-size:25px;
  color:#00ffae;
  margin-bottom:14px;
}

/* SERVICES */

.services{
  background:#0a0a0f;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-bottom:90px;
}

.service-card{
  background:#14141b;
  padding:38px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.05);
  transition:.4s;
}

.service-card:hover{
  transform:translateY(-10px);
  border-color:#00ffae;
}

.service-card i{
  font-size:48px;
  color:#00ffae;
  margin-bottom:24px;
}

.service-card h3{
  margin-bottom:15px;
  font-size:24px;
}

.service-card p{
  color:#c7c7c7;
  line-height:1.8;
}

/* SERVICE CONTENT */

.service-content{
  text-align:center;
  max-width:1100px;
  margin:auto;
}

.service-content span{
  color:#00ffae;
}

.service-content h2{
  font-size:58px;
  margin:15px 0;
}

.service-content h3{
  font-size:34px;
  margin-bottom:22px;
}

.service-content p{
  color:#c7c7c7;
  line-height:1.9;
}

.service-points{
  margin-top:55px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.point-box{
  background:#14141b;
  padding:30px;
  border-radius:24px;
}

.point-box h4{
  margin-bottom:15px;
  color:#00ffae;
}

/* CONTACT */

.contact-box{
  background:linear-gradient(145deg,#121218,#191922);
  padding:65px;
  border-radius:35px;
  text-align:center;
  border:1px solid rgba(255,255,255,.08);
}

.contact-box i{
  font-size:60px;
  color:#00ffae;
  margin-bottom:22px;
}

.contact-box h3{
  font-size:34px;
  margin-bottom:18px;
}

.contact-box p{
  color:#ccc;
  line-height:2;
}

/* FOOTER */

footer{
  padding:45px 8%;
  text-align:center;
  border-top:1px solid rgba(255,255,255,.08);
  background:#050505;
}

.footer-logo{
  font-size:36px;
  font-weight:800;
  margin-bottom:15px;
}

.footer-logo span{
  color:#00ffae;
}

.social-icons{
  margin:30px 0;
}

.social-icons a{
  width:48px;
  height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#15151c;
  margin:0 8px;
  color:#fff;
  transition:.3s;
}

.social-icons a:hover{
  background:#00ffae;
  color:#000;
  transform:translateY(-5px);
}

/* RESPONSIVE */

@media(max-width:991px){

  .nav-links{
    display:none;
  }

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-content p{
    margin:auto auto 35px;
  }

  .hero-buttons{
    justify-content:center;
  }

  .about-container{
    grid-template-columns:1fr;
  }

  .hero-form{
    justify-content:center;
    width:100%;
  }

}

@media(max-width:600px){

  .hero-content h1{
    font-size:42px;
  }

  .section-title h2{
    font-size:34px;
  }

  .service-content h2{
    font-size:42px;
  }

  .service-content h3{
    font-size:25px;
  }

  .about-content h3{
    font-size:32px;
  }

  .hero-form form{
    padding:30px 22px;
  }

  .contact-box{
    padding:40px 25px;
  }

}



/* PREMIUM GLASS EFFECT */

.hero-form form,
.about-card,
.service-card,
.point-box,
.contact-box{
  position:relative;
  overflow:hidden;
  background:rgba(18,18,24,.75);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
  0 10px 30px rgba(0,0,0,.45),
  inset 0 1px 0 rgba(255,255,255,.04);
}

/* TOP LIGHT EFFECT */

.hero-form form::before,
.about-card::before,
.service-card::before,
.point-box::before,
.contact-box::before{
  content:'';
  position:absolute;
  top:0;
  left:-120%;
  width:120%;
  height:100%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.06),
    transparent
  );
  transition:.8s;
}

.hero-form form:hover::before,
.about-card:hover::before,
.service-card:hover::before,
.point-box:hover::before,
.contact-box:hover::before{
  left:120%;
}

/* PREMIUM HOVER */

.about-card:hover,
.service-card:hover,
.point-box:hover{
  transform:translateY(-10px) scale(1.02);
  border-color:#00ffae;
  box-shadow:
  0 15px 40px rgba(0,255,174,.12),
  0 8px 25px rgba(0,0,0,.4);
}

/* FORM INPUT PREMIUM */

.input-box input,
.input-box select{
  background:rgba(255,255,255,.03);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:inset 0 0 10px rgba(255,255,255,.02);
  transition:.35s;
}

.input-box input:focus,
.input-box select:focus{
  border-color:#00ffae;
  box-shadow:
  0 0 0 4px rgba(0,255,174,.08),
  0 0 18px rgba(0,255,174,.15);
}

/* PREMIUM BUTTONS */

.primary-btn,
.call-btn,
.hero-form button{
  position:relative;
  overflow:hidden;
  box-shadow:0 8px 25px rgba(0,255,174,.18);
}

.primary-btn::before,
.call-btn::before,
.hero-form button::before{
  content:'';
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.4),
    transparent
  );
  transition:.7s;
}

.primary-btn:hover::before,
.call-btn:hover::before,
.hero-form button:hover::before{
  left:100%;
}

.primary-btn:hover,
.call-btn:hover,
.hero-form button:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(0,255,174,.25);
}

/* SECTION TITLES */

.section-title h2,
.service-content h2{
  position:relative;
  display:inline-block;
}

.section-title h2::after,
.service-content h2::after{
  content:'';
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-12px;
  width:90px;
  height:4px;
  border-radius:20px;
  background:#00ffae;
}

/* IMAGE PREMIUM */

.about-image img{
  box-shadow:
  0 20px 60px rgba(0,0,0,.5),
  0 0 40px rgba(0,255,174,.08);
  transition:.5s;
}

.about-image img:hover{
  transform:scale(1.03);
}

/* SOCIAL ICONS */

.social-icons a{
  border:1px solid rgba(255,255,255,.05);
  backdrop-filter:blur(10px);
  box-shadow:0 5px 15px rgba(0,0,0,.3);
}

.social-icons a:hover{
  box-shadow:0 10px 25px rgba(0,255,174,.25);
}

/* BODY GLOW */

body::before{
  content:'';
  position:fixed;
  width:400px;
  height:400px;
  background:#00ffae12;
  border-radius:50%;
  filter:blur(120px);
  top:-100px;
  right:-100px;
  z-index:-1;
}

body::after{
  content:'';
  position:fixed;
  width:350px;
  height:350px;
  background:#00ffae10;
  border-radius:50%;
  filter:blur(120px);
  bottom:-100px;
  left:-100px;
  z-index:-1;
}



/* COMPACT SECTION SPACING */

section{
  padding:55px 8%;
}

.hero{
  padding:125px 8% 45px;
  min-height:auto;
}

.about,
.services,
.contact{
  margin:0;
  padding-top:55px;
  padding-bottom:55px;
}

.section-title{
  margin-bottom:30px;
}

.about-container{
  gap:35px;
}

.service-grid{
  gap:20px;
  margin-bottom:35px;
}

.service-points{
  gap:18px;
  margin-top:25px;
}

.contact-box{
  margin-top:10px;
}

footer{
  padding:30px 8%;
}

/* MOBILE */

@media(max-width:600px){

  section{
    padding:45px 5%;
  }

  .hero{
    padding:110px 5% 35px;
  }

  .about,
  .services,
  .contact{
    padding-top:45px;
    padding-bottom:45px;
  }

  .section-title{
    margin-bottom:24px;
  }

  .about-container{
    gap:25px;
  }

}

/* TEXT SIZE FIX */

.hero-content h1{
  font-size:48px;
  line-height:1.15;
}

.hero-content p{
  font-size:14px;
  line-height:1.8;
}

.section-title h2{
  font-size:34px;
}

.section-title p{
  font-size:14px;
}

.about-content h3{
  font-size:30px;
}

.about-content p{
  font-size:14px;
}

.service-card h3{
  font-size:20px;
}

.service-card p{
  font-size:13px;
}

.service-content h2{
  font-size:42px;
}

.service-content h3{
  font-size:26px;
}

.service-content p{
  font-size:14px;
}

.point-box h4{
  font-size:18px;
}

.point-box p{
  font-size:13px;
}

.contact-box h3{
  font-size:28px;
}

.contact-box p{
  font-size:14px;
}

.hero-form h2{
  font-size:24px;
}

.input-box input,
.input-box select{
  font-size:13px;
}

.hero-form button{
  font-size:14px;
}

.nav-links a{
  font-size:20px;
}

.call-btn{
  font-size:14px;
}

/* MOBILE */

@media(max-width:600px){

  .hero-content h1{
    font-size:34px;
  }

  .section-title h2{
    font-size:28px;
  }

  .about-content h3{
    font-size:24px;
  }

  .service-content h2{
    font-size:34px;
  }

  .service-content h3{
    font-size:22px;
  }

}


/* PREMIUM SERVICE CONTENT */

.service-content{
  /* margin-top:50px; */
  text-align:center;
  max-width:1100px;
  margin-left:auto;
  margin-right:auto;
}

.service-tag{
  color:#00ffae;
  font-size:13px;
  letter-spacing:1px;
}

.service-content h2{
  font-size:46px;
  margin:12px 0;
  font-weight:800;
}

.service-content h3{
  font-size:28px;
  margin-bottom:18px;
  font-weight:600;
}

.service-content p{
    margin-top: 20px;
  color:#c7c7c7;
  line-height:1.8;
  font-size:14px;
}

.service-text-wrapper{
  margin-top:35px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
}

.service-text-box{
  background:rgba(18,18,24,.75);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
  border-radius:24px;
  padding:28px;
  transition:.35s;
  box-shadow:
  0 10px 30px rgba(0,0,0,.35);
}

.service-text-box:hover{
  transform:translateY(-8px);
  border-color:#00ffae;
  box-shadow:
  0 15px 35px rgba(0,255,174,.12);
}

.service-text-box h4{
  font-size:18px;
  margin-bottom:14px;
  color:#00ffae;
}

.service-text-box p{
  font-size:13px;
  line-height:1.7;
}

/* MOBILE */

@media(max-width:600px){

  .service-content h2{
    font-size:34px;
  }

  .service-content h3{
    font-size:22px;
  }

}



/* SELECT OPTION FIX */

.input-box select{
  color:#fff;
  background:#0f0f14;
}

.input-box select option{
  background:#111;
  color:#fff;
  padding:10px;
}

/* REMOVE EMPTY WHITE AREA */

select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}


/* PERFECT NAVBAR OVERFLOW FIX */

html{
  overflow-x:hidden;
}

body{
  overflow-x:hidden;
  position:relative;
}

/* NAVBAR */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:9999;
  overflow:hidden;
}

/* REMOVE EXTRA BLUR/GLOW */

body::before,
body::after,
.hero::before{
  display:none;
}

/* REMOVE ANY HORIZONTAL SCROLL */

*{
  max-width:100%;
}

/* FINAL NAVBAR LINE FIX */

.navbar{
  border-bottom:none !important;
  box-shadow:none !important;
}

/* REMOVE WHITE LINE */

.navbar::before,
.navbar::after{
  display:none !important;
}

/* REMOVE ANY EXTRA BORDER */

body,
html{
  border:none !important;
}

/* REMOVE BLUR ARTIFACT */

.navbar{
  backdrop-filter:none !important;
  background:#050505 !important;
}



/* FLOATING BUTTONS */

.floating-buttons{
  position:fixed;
  right:20px;
  bottom:20px;
  display:flex;
  flex-direction:column;
  gap:15px;
  z-index:99999;
}

.float-btn{
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.35);
  transition:.35s;
}

.float-btn:hover{
  transform:translateY(-5px) scale(1.05);
}

.whatsapp{
  background:#25D366;
}

.call{
  background:#25D366;
}

/* MOBILE */

@media(max-width:600px){

  .float-btn{
    width:52px;
    height:52px;
    font-size:21px;
  }

}


/* NEW PREMIUM COLOR THEME */
/* =========================
   FINAL TOYOTA RED THEME
========================= */

:root{
  --primary:#E1062C;
  --primary-dark:#b80022;
  --primary-light:#ff3355;
  --bg:#050505;
  --card:#121218;
  --text:#ffffff;
}

/* BODY */

body{
  background:var(--bg);
  color:var(--text);
}

/* NAVBAR */

.navbar{
  background:#050505 !important;
}

/* LOGO */

.logo span{
  color:var(--primary);
}

/* BUTTONS */

.call-btn,
.primary-btn,
.hero-form button{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
  color:#fff;
  box-shadow:0 10px 30px rgba(225,6,44,.28);
}

.call-btn:hover,
.primary-btn:hover,
.hero-form button:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 40px rgba(225,6,44,.45);
}

/* LINKS */

.nav-links a:hover{
  color:var(--primary);
}

/* TEXT COLORS */

.hero-content h1 span,
.service-tag,
.point-box h4,
.service-text-box h4,
.about-card i,
.service-card i,
.contact-box i{
  color:var(--primary);
}

/* SECTION LINE */

.section-title h2::after,
.service-content h2::after{
  background:var(--primary);
}

/* TAG */

.tag{
  color:var(--primary);
  border:1px solid rgba(225,6,44,.35);
  background:rgba(225,6,44,.08);
}

/* INPUT FOCUS */

.input-box input:focus,
.input-box select:focus{
  border-color:var(--primary);
  box-shadow:
  0 0 0 4px rgba(225,6,44,.08),
  0 0 18px rgba(225,6,44,.18);
}

/* CARD HOVER */

.about-card:hover,
.service-card:hover,
.point-box:hover,
.service-text-box:hover{
  border-color:var(--primary);
  box-shadow:
  0 15px 40px rgba(225,6,44,.18);
}

/* FLOAT BUTTONS */

.whatsapp,
.call{
  background:linear-gradient(135deg,var(--primary),var(--primary-dark));
}

/* SOCIAL */

.social-icons a:hover{
  background:var(--primary);
  color:#fff;
  box-shadow:0 10px 30px rgba(225,6,44,.35);
}




@media(max-width:600px){

  .hero{
    padding-top:150px !important;
  }

}



