/* HERO SECTION */
/* SERVICE 1 */
.ceramic-hero{
  position: relative;
  height: 100vh;
  background: url("img/ceramic coating.jpeg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
/* SERVICE 2 */
.service-hero.graphene {
  background: url("cp19.png") center/cover no-repeat;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
.service-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;      /* vertical center */
  justify-content: center;  /* horizontal center */
  text-align: center;
  background: #000;
  padding-top: 100px; /* space for header */
}
/* SERVICE 2 */
.service-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* Transparent black */
  z-index: 1;
}
/* DARK OVERLAY */
.ceramic-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55); /* Transparent black */
  z-index: 1;
}
/* ANGLED SHAPE LEFT */
.hero-overlay{
  position: absolute;
  left: -200px;
  top: 0;
  width: 500px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.65)
  );
  transform: skewX(-20deg);
  z-index: 2;
}

/* CONTENT */
.hero-content{
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
  padding: 0 20px;
}

.hero-subtitle{
  letter-spacing: 3px;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}

.hero-content h1{
 font-size: clamp(42px, 7vw, 90px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content h1 span{
  color: #ccc;
  font-weight: 600;
}

.hero-description{
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
  color: #bbb;
  line-height: 1.6;
}

/* BUTTON */
.hero-btn{
  display: inline-block;
  padding: 15px 40px;
  background: #ffffff;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
}

.hero-btn:hover{
  background: #ccc;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1024px){
  .hero-content h1{
    font-size: 54px;
  }
}

@media (max-width: 768px){
  .ceramic-hero{
    height: 90vh;
  }

  .hero-content h1{
    font-size: 38px;
  }

  .hero-description{
    font-size: 15px;
  }

  .hero-overlay{
    display: none;
  }
}

@media (max-width: 480px){
  .hero-content h1{
    font-size: 30px;
  }

  .hero-btn{
    padding: 12px 30px;
  }
}

/* ===============================
   SECTION BACKGROUND
=================================*/

.ceramic-about{
  padding:140px 8%;
  background:linear-gradient(
    135deg,
    #0a0a0a 0%,
    #111111 40%,
    #0c0c0c 100%
  );
  color:#fff;
  overflow:hidden;
}

.about-container{
  max-width:1400px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:120px;
  flex-wrap:wrap;
}

/* ===============================
   IMAGE STACK
=================================*/

.about-images{
  flex:1;
  display:flex;
  justify-content:center;
}

.image-wrapper{
  position:relative;
  width:520px;
  height:380px;
}

/* BACK IMAGE */
.img-back{
  position:absolute;
  top: -75px;;
  left:-40px;
  width:420px;
  height:260px;
  object-fit:cover;
  border-radius:20px;
  z-index:1;
  opacity:0.9;
}

/* FRONT IMAGE */
.img-front{
  position:absolute;
  bottom: -65px;;
  right:0;
  width:460px;
  height:320px;
  object-fit:cover;
  border-radius:20px;
  box-shadow:0 40px 80px rgba(0,0,0,0.8);
  z-index:2;
}

/* BADGE */
.badge{
  position:absolute;
  top:28%;
  left:70%;
  transform:translate(-50%,-50%);
  background: linear-gradient(1deg, rgba(20, 20, 20, 0.95), rgb(41 33 33 / 85%));
  padding:25px 35px;
  border-radius:20px;
  text-align:center;
  z-index:3;
  backdrop-filter:blur(6px);
}

.badge h3{
  font-size:34px;
  margin:0;
}

.badge span{
  font-size:13px;
  color:#bbb;
}

/* ===============================
   RIGHT CONTENT
=================================*/

.about-content{
  flex:1;
  min-width:320px;
}

.section-sub{
  color:#888;
  font-size:14px;
  letter-spacing:2px;
  margin-bottom:20px;
}

.about-content h2{
  font-size:48px;
  line-height:1.15;
  margin-bottom:25px;
}

.about-text{
  color:#aaa;
  line-height:1.8;
  margin-bottom:35px;
}

/* BENEFITS */
.benefits{
  list-style:none;
  padding:0;
  margin-bottom:40px;
}

.benefits li{
  margin-bottom:15px;
  position:relative;
  padding-left:25px;
  color:#ddd;
}

.benefits li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:#fff;
}

/* BUTTON */
.about-btn{
  padding:15px 45px;
  background:#ffffff;
  color:#000;
  text-decoration:none;
  font-weight:700;
  border-radius:8px;
  transition:0.3s;
}

.about-btn:hover{
  background:#ccc;
}

/* ===============================
   SCROLL ANIMATION
=================================*/

.reveal-left,
.reveal-right{
  opacity:0;
  transition:all 1s ease;
}

.reveal-left{
  transform:translateX(-80px);
}

.reveal-right{
  transform:translateX(80px);
}

.reveal-left.active,
.reveal-right.active{
  opacity:1;
  transform:translateX(0);
}

/* ===============================
   RESPONSIVE
=================================*/

@media(max-width:1024px){

  .about-container{
    flex-direction:column;
    gap:80px;
  }

  .image-wrapper{
    width:100%;
    height:auto;
  }

  .img-back,
  .img-front{
    position:relative;
    width:100%;
    height:auto;
  }

  .img-front{
    margin-top:20px;
  }

  .badge{
    display:none;
  }

  .about-content h2{
    font-size:36px;
  }
}

@media(max-width:768px){

  .ceramic-about{
    padding:100px 6%;
  }

  .about-content h2{
    font-size:30px;
  }
}


/* ===============================
   SECTION BACKGROUND
=================================*/

.benefits-section{
  padding:70px 8%;
  background:linear-gradient(
    135deg,
    #0a0a0a 0%,
    #121212 50%,
    #0c0c0c 100%
  );
  color:#fff;
  overflow:hidden;
}

/* HEADER */
.benefits-header{
  text-align:left;
  max-width:800px;
  margin-bottom:80px;
}

.section-sub{
  font-size:24px;
  letter-spacing:2px;
  color:#888;
  margin-bottom:15px;
}

.benefits-header h2{
  font-size:48px;
  line-height:1.2;
}

/* ROW */
.benefits-row{
  display:flex;
  justify-content:space-between;
  gap:30px;
  flex-wrap:nowrap;
}

/* CARD */
.benefit-card{
  background: linear-gradient(
  135deg,
  #050505 0%,
  #0f1115 40%,
  #1a1d22 100%
);
  padding:60px 30px 40px;
  border-radius:12px;
  width:100%;
  max-width:260px;
  position:relative;
  text-align:center;
  transition:0.4s ease;
}

.benefit-card:hover{
  transform:translateY(-10px);
  background:#1c1c1c;
}

/* ICON CIRCLE */
.icon-circle{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#1b1b1b;
  display:flex;
  align-items:center;
  justify-content:center;
  position:absolute;
  top:-45px;
  left:50%;
  transform:translateX(-50%);
  border:2px solid #2a2a2a;
  transition:0.4s ease;
}

.icon-circle img{
  width:40px;
  height:40px;
  object-fit:contain;
  filter:brightness(0) invert(1); /* makes white icon on dark */
}

/* Hover effect */
.benefit-card:hover .icon-circle{
  background:#242424;
  transform:translateX(-50%) scale(1.08);
}

.benefit-card h3{
  margin-top:50px;
  margin-bottom:15px;
  font-size:20px;
}

.benefit-card p{
  font-size:16px;
  color:#aaa;
  line-height:1.6;
}

/* ===============================
   HORIZONTAL SLIDE ANIMATION
=================================*/

.slide-item{
  opacity:0;
  transform:translateX(120px);
  transition:all 0.8s ease;
}

.slide-item.active{
  opacity:1;
  transform:translateX(0);
}

/* ===============================
   RESPONSIVE
=================================*/

@media(max-width:1200px){
  .benefits-row{
    flex-wrap:wrap;
    justify-content:center;
  }

  .benefit-card{
    max-width:300px;
  }
}

@media(max-width:768px){

  .benefits-section{
    padding:100px 6%;
  }

  .benefits-header h2{
    font-size:32px;
  }

  .benefits-row{
    flex-direction:column;
    align-items:center;
    gap:60px;
  }

  .benefit-card{
    max-width:100%;
  }

  .icon-circle{
    top:-35px;
  }
}



/* ===============================
   SECTION BACKGROUND
=================================*/

.pricing-section{
  padding:70px 8%;
  background:
    radial-gradient(circle at 20% 30%, rgba(40,40,40,0.25), transparent 50%),
    linear-gradient(135deg, #050505 0%, #121212 100%);
  color:#fff;
  text-align:center;
}

/* HEADER */
.pricing-header h2{
  font-size:48px;
  margin-bottom:15px;
}

.pricing-header p{
  color:#aaa;
  margin-bottom:80px;
  font-size: 20px;
}

/* WRAPPER */
.pricing-wrapper{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

/* CARD */
.pricing-card{
  background:#141414;
  padding:50px 40px;
  border-radius:20px;
  width:320px;
  position:relative;
  transition:0.4s ease;
  border:1px solid rgba(255,255,255,0.05);
}

.pricing-card:hover{
  transform:translateY(-10px);
  border-color:rgba(255,255,255,0.15);
}

/* FEATURED CARD */
.featured{
  background:#1a1a1a;
  transform:scale(1.05);
  border:1px solid rgba(255,255,255,0.15);
}

.popular-tag{
  position:absolute;
  top:-15px;
  right:20px;
  background:#ffffff;
  color:#000;
  font-size:12px;
  padding:5px 12px;
  border-radius:20px;
}

/* PRICE */
.price{
  font-size:42px;
  font-weight:bold;
  margin:20px 0 10px;
}

.plan-duration{
  color:#aaa;
  margin-bottom:25px;
}

/* LIST */
.pricing-card ul{
  list-style:none;
  padding:0;
  margin-bottom:30px;
}

.pricing-card li{
  margin-bottom:12px;
  color:#ccc;
}

/* BUTTON */
.pricing-btn{
  display:inline-block;
  padding:14px 40px;
  background:#ffffff;
  color:#000;
  font-weight:700;
  border-radius:8px;
  text-decoration:none;
  transition:0.3s ease;
}

.pricing-btn:hover{
  background:#ccc;
}

.featured-btn{
  background:#ffffff;
}
.pricing-card h3 {
    font-size: 30px;
    margin-bottom: 15px;
}
/* ===============================
   REVEAL ANIMATION
=================================*/

.reveal-up{
  opacity:0;
  transform:translateY(80px);
  transition:all 0.8s ease;
}

.reveal-up.active{
  opacity:1;
  transform:translateY(0);
}

/* ===============================
   RESPONSIVE
=================================*/

@media(max-width:992px){
  .pricing-wrapper{
    flex-direction:column;
    align-items:center;
  }

  .featured{
    transform:none;
  }
}

@media(max-width:768px){
  .pricing-header h2{
    font-size:32px;
  }

  .pricing-section{
    padding:100px 6%;
  }
}

/* ===============================
   CTA SECTION
=================================*/

.cta-section{
  padding:80px 8%;
  background:#0a0a0a;
}

.cta-container{
  position:relative;
  border-radius:30px;
  padding:80px;
  overflow:hidden;
  background:linear-gradient(
    135deg,
    #111111 0%,
    #181c22 100%
  );
}

/* RIGHT SIDE SHADE CIRCLES */
.cta-container::after{
  content:"";
  position:absolute;
  right:-200px;
  top:50%;
  transform:translateY(-50%);
  width:700px;
  height:700px;
  background:
    radial-gradient(circle, rgba(255,255,255,0.05) 20%, transparent 21%),
    radial-gradient(circle, rgba(255,255,255,0.04) 30%, transparent 31%),
    radial-gradient(circle, rgba(255,255,255,0.03) 40%, transparent 41%);
  border-radius:50%;
}

/* CONTENT */
.cta-content{
  position:relative;
  z-index:2;
  max-width:600px;
}

.cta-content h2{
  font-size:48px;
  color:#fff;
  margin-bottom:20px;
}

.cta-content p{
  color:#bbb;
  line-height:1.7;
  margin-bottom:40px;
  font-size:20px;
}

/* BUTTONS */
.cta-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.cta-btn{
  padding:15px 40px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s ease;
}

.primary{
  background:#ffffff;
  color:#000;
}

.primary:hover{
  background:#ccc;
}

.secondary{
  background:#000;
  color:#fff;
  border:1px solid #333;
}

.secondary:hover{
  background:#1a1a1a;
}

/* ===============================
   RESPONSIVE
=================================*/

@media(max-width:992px){

  .cta-container{
    padding:60px 40px;
  }

  .cta-content h2{
    font-size:34px;
  }

  .cta-container::after{
    width:500px;
    height:500px;
    right:-250px;
  }
}

@media(max-width:768px){

  .cta-section{
    padding:80px 6%;
  }

  .cta-content h2{
    font-size:28px;
  }

  .cta-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .cta-container::after{
    display:none;
  }
}

/* ================= DARK ENHANCEMENT SECTION ================= */

.enhancement-section {
  padding: 120px 8%;
  background: linear-gradient(135deg, #0a0a0a, #111111);
  color: #ffffff;
}

.enhancement-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  flex-wrap: wrap;
}

.enhancement-image {
  position: relative;
  flex: 1;
  min-width: 320px;
  text-align: center;
}

.enhancement-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

.enhancement-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  padding: 18px 22px;
  border-radius: 50%;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
}

.enhancement-content {
  flex: 1;
  min-width: 320px;
}

.section-subtitle {
  font-size: 14px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 15px;
}

.enhancement-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.enhancement-content h2 span {
  color: #ffffff;
  opacity: 0.8;
}

.enhancement-text {
  color: #bbbbbb;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 550px;
}

.enhancement-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.enhancement-list li {
  margin-bottom: 14px;
  position: relative;
  padding-left: 28px;
  color: #dddddd;
}

.enhancement-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #ffffff;
  font-size: 14px;
}

/* Buttons matching your hero style */

.primary-btn {
  background: #ffffff;
  color: #000;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #cccccc;
}

.outline-btn {
  border: 1px solid #ffffff;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-left: 15px;
  transition: 0.3s;
}

.outline-btn:hover {
  background: #ffffff;
  color: #000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .enhancement-container {
    flex-direction: column;
    text-align: center;
  }

  .enhancement-text {
    margin: 0 auto 30px;
  }

  .enhancement-list li {
    padding-left: 0;
  }

  .enhancement-list li::before {
    display: none;
  }

  .enhancement-badge {
    left: 50%;
    transform: translateX(-50%);
  }

}

/* ================= PROCESS SECTION ================= */

.process-section {
  padding: 120px 8%;
  background: linear-gradient(135deg, #0a0a0a, #111);
  color: #fff;
}

.process-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

/* LEFT SIDE */

.process-left {
  flex: 1;
  min-width: 320px;
}

.process-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.process-left h2 span {
  opacity: 0.7;
}

.process-description {
  color: #aaa;
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 500px;
}

/* Decorative Circles */

/* Replace circle graphic with image */

.process-image {
  margin-top: 30px;
  max-width: 400px;
}

.process-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: 0.4s ease;
}

.process-image img:hover {
  transform: scale(1.03);
}

/* RIGHT SIDE */

.process-right {
  flex: 1;
  min-width: 320px;
}

.process-item {
  display: flex;
  gap: 25px;
  margin-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 40px;
}

.process-number {
  font-size: 64px;
  font-weight: 700;
  color: rgba(255,255,255,0.15);
}

.process-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.process-content p {
  color: #aaa;
  margin-bottom: 15px;
  line-height: 1.6;
}

.process-content ul {
  list-style: none;
  padding: 0;
}

.process-content ul li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  color: #ddd;
}

.process-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 12px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .process-container {
    flex-direction: column;
  }

  .process-item {
    flex-direction: column;
  }

  .process-number {
    font-size: 42px;
  }

  .process-graphic {
    margin-bottom: 40px;
  }

}

/* ================= COMMUNITY SECTION ================= */

.community-section {
  padding: 120px 8%;
  background: linear-gradient(135deg, #0a0a0a, #111);
  color: #fff;
}

.community-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  flex-wrap: wrap;
}

/* LEFT SIDE */

.community-left {
  flex: 1;
  min-width: 320px;
}

.section-tag {
  font-size: 13px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 15px;
}

.community-left h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.community-left h2 span {
  opacity: 0.7;
}

.community-text {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 520px;
}

/* RIGHT SIDE GRID */

.community-stats {
  flex: 1;
  min-width: 320px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s ease;
}

.stat-card h3 {
  font-size: 42px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.2);
}

.stat-card p {
  color: #ddd;
  font-size: 15px;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .community-container {
    flex-direction: column;
  }

  .community-stats {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 30px;
  }

}

/* ================= SERVICES GRID SECTION ================= */

.services-grid-section {
  padding: 120px 8%;
  background: linear-gradient(135deg, #0a0a0a, #111);
  color: #fff;
  text-align: center;
}

/* HEADER */

.services-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.section-tag {
  font-size: 13px;
  letter-spacing: 3px;
  color: #888;
  margin-bottom: 15px;
}

.services-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.services-header h2 span {
  opacity: 0.7;
}

.services-description {
  color: #aaa;
  line-height: 1.7;
}

/* GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px 30px;
  border-radius: 18px;
  text-align: center;
  transition: 0.3s ease;
}

.service-card h3 {
  margin: 20px 0 15px;
  font-size: 20px;
}

.service-card p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

/* FEATURED CARD */

.service-card.featured {
  background: #111;
  border: 1px solid rgba(255,255,255,0.2);
}

/* ICON BOX */

.icon-box {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}