/* HERO SECTION */
/* SERVICE 1 */
.ceramic-hero{
  position: relative;
  height: 100vh;
  background: url("img/ceramic coating (3).png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}
/* SERVICE 2 */
.service-hero.graphene {
  background: url("img/bg1.jpeg") 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: 650px;   /* reduce width (was 900px) */
  margin-left: 4%;    /* move block to left */
  margin-right: auto;

  text-align: left;   /* align content properly */
  padding: 0 20px;
}

.hero-subtitle{
  letter-spacing: 3px;
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
}

.hero-content h1{
  font-size: 60px; 
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
   white-space: nowrap;
}

.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;
}
/* 🔥 FIX CLICK BLOCKING ISSUE */
.ceramic-hero::before,
.service-hero::before,
.hero-overlay{
  pointer-events: none;
}
.ceramic-hero,
.service-hero{
  z-index: 1;
  position: relative;
}
/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1024px){
  .hero-content h1{
    font-size: 54px;
    white-space: normal;
  }
  
}

@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;
    display:flex;
    justify-content:center;
  }

   .image-wrapper{
    width:90%;
    height:auto;
    margin:0 auto;
  }

  .img-back,
  .img-front{
    position:relative;
    width:100%;
    height:auto;
    display:block;
  }

  .img-front{
    margin-top:-60px;
  }
  .img-front{
    margin-bottom: 10px;
  }

  .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:50px;
  height:50px;
  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;
  margin-bottom: 20px;
}

/* 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;
  font-size: 18px;
}

.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: 150%;
  height: 380px;          /* control image height */
  object-fit: cover;      /* keeps image nicely cropped */
  border-radius: 5px;
  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;
  }
    .process-image img {
    width: 100%;      /* fit screen */
    height: 250px;    /* smaller height */
  }
.process-section {
  padding: 20px 8%;
}
}

/* ================= 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: 18px;
}

.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 ================= */

/* ================= SUN FILM GRID SECTION ================= */

/* ================= FEATURE BLOCK ================= */

.feature-block{
padding:120px 8%;
background:linear-gradient(135deg,#0a0a0a,#111);
color:#fff;
text-align:center;
}

/* HEADER */

.feature-head{
max-width:800px;
margin:0 auto 70px;
}

.feature-tag{
font-size:13px;
letter-spacing:3px;
color:#888;
margin-bottom:15px;
}

.feature-head h2{
font-size:clamp(32px,4vw,48px);
margin-bottom:20px;
}

.feature-head h2 span{
opacity:.7;
}

.feature-desc{
color:#aaa;
line-height:1.7;
}

/* GRID */

.feature-layout{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* ITEM */

.feature-item{
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:.3s ease;
}

.feature-item h3{
margin:20px 0 15px;
font-size:20px;
}

.feature-item p{
color:#bbb;
font-size:14px;
line-height:1.6;
}

.feature-item:hover{
transform:translateY(-6px);
border-color:rgba(255,255,255,0.2);
}

/* HIGHLIGHT CARD */

.feature-item.highlight{
background:#111;
border:1px solid rgba(255,255,255,0.2);
}

/* ICON */

.feature-icon{
width:50px;
height:50px;
margin:0 auto 20px;
border-radius:12px;
background:rgba(255,255,255,0.05);
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
}

/* RESPONSIVE */

@media (max-width:992px){

.feature-layout{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.feature-layout{
grid-template-columns:1fr;
}

}

.studio-contact-section{
  background:#0f0f0f;
  padding:110px 20px;
  color:#fff;
  text-align:center;
}

.studio-contact-container{
  max-width:1200px;
  margin:auto;
}

/* Heading */

.studio-contact-title{
  font-size:38px;
  font-weight:600;
  margin-bottom:15px;
}

.studio-contact-subtitle{
  color:#9a9a9a;
  max-width:650px;
  margin:auto;
  margin-bottom:70px;
  line-height:1.6;
  font-size: 19px;
}

/* Grid */

.studio-contact-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

/* Card */

.studio-contact-card{
  background: linear-gradient(135deg, #050505 0%, #0f1115 40%, #1a1d22 100%);
  padding:45px 35px;
  border-radius:12px;
  border:1px solid #262626;

  display:flex;
  flex-direction:column;
  align-items:left;

  text-align:left;

  min-height:380px;
  transition:0.3s;
}

.studio-contact-card:hover{
  transform:translateY(-6px);
  border-color:#3a3a3a;
}
/* Icon */

.studio-contact-icon{
  font-size:38px;
  margin-bottom:20px;
}

/* Card title */

.studio-contact-card h3{
  font-size:18px;
  margin-bottom:15px;
}

/* Card text */

.studio-contact-card p{
  font-size:16px;
  color:#b8b8b8;
  line-height:1.7;
  margin-bottom:25px;
}

/* Button */

.studio-contact-btn{
  background:#828282;
  color:#1f1e1e;
  border:none;
  padding:12px 22px;
  font-size:16px;
  border-radius:5px;
  cursor:pointer;
  transition:0.3s;

  margin-top:auto;   /* pushes button to bottom */
  width:100%;
}

.studio-contact-btn:hover{
  background:#a0a0a0;
}
.studio-contact-icon{
  margin-bottom:20px;
}

.studio-contact-icon img{
  width:45px;
  height:auto;
  display:block;
}

/* Mobile */

@media (max-width:900px){

.studio-contact-grid{
  grid-template-columns:1fr 1fr;
}

}

@media (max-width:600px){

.studio-contact-title{
  font-size:28px;
}

.studio-contact-grid{
  grid-template-columns:1fr;
}

.studio-contact-card{
  padding:35px 25px;
}

}

.cx-services-section{
  background:#0b0b0b;
  padding:120px 20px;
  color:#fff;
}

.cx-services-container{
  max-width:1200px;
  margin:auto;
}

.cx-services-title{
  font-size:40px;
  margin-bottom:12px;
}

.cx-services-subtitle{
  color:#9a9a9a;
  max-width:600px;
  margin-bottom:60px;
  line-height:1.6;
}

/* GRID */

.cx-services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */

.cx-service-card{
  background:#171717;
  padding:35px;
  border-radius:14px;
  border:1px solid #262626;
  transition:0.35s;
}

.cx-service-card:hover{
  border-color:#3a3a3a;
  transform:translateY(-6px);
}

/* TAG */

.cx-service-tag{
  font-size:14px;
  letter-spacing:1px;
  color:#8f8f8f;
}

/* TITLE */

.cx-service-card h3{
  margin:12px 0;
  font-size:20px;
}

/* TEXT */

.cx-service-card p{
  color:#b5b5b5;
  line-height:1.6;
  font-size:16px;
}

/* META */

.cx-service-meta{
  display:block;
  margin-top:20px;
  font-size:13px;
  color:#8a8a8a;
}

/* TABLET */

@media(max-width:900px){

.cx-services-grid{
  grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

/* TABLET */

@media (max-width:900px){
  .cx-services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */

@media (max-width:600px){

  .cx-services-title{
    font-size:26px;
  }

  .cx-services-subtitle{
    font-size:14px;
  }

  .cx-services-grid{
    grid-template-columns:repeat(2,1fr); /* 2 cards on mobile */
    gap:16px;
  }

  .cx-service-card{
    padding:22px;
  }

  .cx-service-card h3{
    font-size:16px;
  }

  .cx-service-card p{
    font-size:13px;
  }

}

.cx-contact-section{
  background:#0b0b0b;
  padding:50px 20px;
  color:#fff;
}

.cx-contact-container{
  max-width:1200px;
  margin:auto;
}

.cx-contact-title{
  text-align:center;
  font-size:38px;
  margin-bottom:60px;
}

/* GRID */

.cx-contact-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:40px;
}

/* FORM BOX */

.cx-contact-form-box{
  background:#141414;
  padding:40px;
  border-radius:14px;
  border:1px solid #262626;
}

.cx-contact-form-box h3{
  margin-bottom:10px;
}

.cx-contact-desc{
  color:#9a9a9a;
  margin-bottom:30px;
  line-height:1.6;
}

/* FORM */

.cx-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}

.cx-contact-form input,
.cx-contact-form textarea{
  width:100%;
  padding:14px;
  border-radius:8px;
  border:1px solid #333;
  background:#0f0f0f;
  color:#fff;
  font-size:14px;
}

.cx-contact-form textarea{
  height:120px;
  margin-bottom:20px;
  resize:none;
}

.cx-contact-btn{
  padding:14px 28px;
  border:none;
  background:#2c2c2c;
  color:#fff;
  border-radius:8px;
  cursor:pointer;
  transition:0.3s;
}

.cx-contact-btn:hover{
  background:#3a3a3a;
}

/* CONTACT INFO CARD */

.cx-contact-info{
  background:#171717;
  padding:35px;
  border-radius:16px;
  border:1px solid #262626;
}

.cx-contact-info h3{
  margin-bottom:25px;
}

/* CONTACT ITEM */

.cx-contact-item{
  display:flex;
  gap:15px;
  margin-bottom:20px;
}

.cx-contact-item span{
  font-size:20px;
}

.cx-contact-item p{
  color:#a8a8a8;
  font-size:14px;
}

.cx-contact-info hr{
  border:0;
  border-top:1px solid #2a2a2a;
  margin:25px 0;
}

/* SOCIAL */

.cx-social-title{
  margin-bottom:15px;
  color:#9a9a9a;
}

.cx-social-icons{
  display:flex;
  gap:15px;
}

.cx-social-icons a{
  width:36px;
  height:36px;
  background:#2a2a2a;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:6px;
  text-decoration:none;
  color:#fff;
  font-size:14px;
}
.contact-icon img{
  width:30px;
  height:auto;
  display:block;
}
/* TABLET */

@media(max-width:900px){

.cx-contact-grid{
  grid-template-columns:1fr;
}

}

/* MOBILE */

@media(max-width:600px){

.cx-contact-title{
  font-size:28px;
}

.cx-form-row{
  grid-template-columns:1fr;
}

.cx-contact-form-box{
  padding:28px;
}

.cx-contact-info{
  padding:28px;
}

}

/* Scroll Top */
#scrollTopBtn{
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: rgb(119, 118, 118); ;   /* 🔥 TEMP (to confirm visibility) */
  color: #fff;
  border: none;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  z-index: 99999;   /* 🔥 VERY HIGH */
}

.list{
  margin-left: 20px;
}

/* =========================
   CAR WASH SPECIAL LAYOUT
========================= */

.carwash-pricing .pricing-wrapper{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Remove fixed width only here */
.carwash-pricing .pricing-card{
  width: 100%;
}

/* Tablet */
@media(max-width: 992px){
  .carwash-pricing .pricing-wrapper{
    grid-template-columns: repeat(2, 1fr);
  }

  .carwash-pricing .featured{
    transform: none;
  }
}

/* Mobile */
@media(max-width: 600px){
  .carwash-pricing .pricing-wrapper{
    grid-template-columns: 1fr;
  }
}
.social-icons a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: #111;
  color: white;
  text-align: center;
  line-height: 40px;
  border-radius: 8px;
  margin-right: 10px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff6600;
}


/* SECTION */
.service-gallery {
  background: #000;
  padding: 60px 20px;
}

/* TOP */
.top-content {
  text-align: center;
  margin-bottom: 40px;
}

/* TITLE */
.gallery-title {
  color: #fff;
  font-size: 34px;
  margin-bottom: 20px;
}

/* BUTTONS */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 18px;
  background: #111;
  border: 1px solid #333;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
}

.filter-btn.active {
  background: rgb(77, 74, 74);
}

/* GRID (IMPORTANT) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  max-width: 1200px;   /* 🔥 centers properly */
  margin: auto;        /* 🔥 fixes left shift */
}

/* IMAGE FIX */
.gallery-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* ✅ 2 per row */
    gap: 10px;
    padding: 0 10px;
  }

  .gallery-item {
    aspect-ratio: 1 / 1; /* ✅ equal size */
  }
}

.price span {
  display: block;
  font-size: 14px;
  color: #777;
  margin-top: 2px;
}