/* GLOBAL */

/* ================= FOOTER ================= */

.cs-footer {
  background: #111827;
  padding: 70px 0 20px;
}

.cs-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.cs-footer h3,
.cs-footer h4 {
  margin-bottom: 15px;
}

.cs-footer p,
.cs-footer li {
  font-size: 14px;
  opacity: 0.8;
}

.cs-footer ul {
  list-style: none;
  padding: 0;
}

.cs-footer a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.cs-footer a:hover {
  color: #facc15;
}

.cs-footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #1f2937;
  font-size: 14px;
  opacity: 0.7;
}
/* ================= GLOBAL ================= */

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f5f0eb; /* Same as index */
  color: #5D4037;; /* Primary brown */
}

.cs-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HERO ================= */
/* ================= PREMIUM RESPONSIVE HERO ================= */

.cs-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5%;
  overflow: hidden;

  /* Brand Gradient + Image */
  background:
    linear-gradient(
      120deg,
      rgba(93, 64, 55, 0.85),   /* brown */
      rgba(0, 0, 0, 0.75)       /* Black */
    ),
    url('https://learn.g2.com/hs-fs/hubfs/software-development.jpg?width=2121&name=software-development.jpg');

  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}

/* Hero Content Wrapper */
.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

/* Left Content */
.hero-left {
  max-width: 650px;
  color: #FFF5E1;
}

/* Heading */
#hero-subtitle,
#hero-desc,
#hero-buttons {
  opacity: 0;
}

#hero-buttons {
  transform: translateY(20px);
  transition: 0.5s ease;
}


/* Highlight word */
.cs-hero h1 span {
  background: #FFF5E1;
  color: #5D4037;;
  padding: 0 14px;
  border-radius: 6px;
}

/* Paragraph */
.cs-hero p {
  font-size: clamp(16px, 1.5vw, 20px);
  margin-bottom: 35px;
  color: #f5e9dd;
  max-width: 90%;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary Button */
.cs-btn-primary {
  background: #FFF5E1;
  color: #5D4037;;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cs-btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Outline Button */
.cs-btn-outline {
  border: 2px solid #FFF5E1;
  color: #FFF5E1;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.cs-btn-outline:hover {
  background: #FFF5E1;
  color: #5D4037;;
  transform: translateY(-4px);
}

/* Entrance Animation */
.hero-left {
  animation: fadeSlideUp 1.2s ease forwards;
}

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

/* ================= RESPONSIVE FIXES ================= */

/* Tablet */
@media (max-width: 992px) {
  .cs-hero {
    padding: 0 8%;
  }

  .hero-left {
    max-width: 100%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .cs-hero {
    min-height: auto;
    padding: 120px 8%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .cs-btn-primary,
  .cs-btn-outline {
    width: 100%;
    text-align: center;
  }

  .cs-hero p {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .cs-hero {
    min-height: auto;
    padding: 120px 8%;
    background-position: 70% center;  /* Important */
    background-size: cover;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .cs-btn-primary,
  .cs-btn-outline {
    width: 100%;
    text-align: center;
  }

  .cs-hero p {
    max-width: 100%;
  }
}
/* ================= SERVICES ================= */

.cs-services {
  padding: 80px 0;
  background: #f5f0eb;
}

.cs-services h2 {
  text-align: center;
  margin-bottom: 50px;
  color: #5D4037;;
}

.cs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* ================= PROCESS ================= */

.cs-process {
  padding: 80px 0;
  background: #f5f0eb;
  text-align: center;
}

.cs-process h2 {
  color: #5D4037;;
}

.cs-process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.step {
  background: #5D4037;;
  color: #FFF5E1;
  padding: 15px 25px;
  border-radius: 30px;
  font-weight: bold;
}

/* ================= CTA ================= */

.cs-cta {
  padding: 100px 0;
  text-align: center;
  background: #5D4037;;
  color: #FFF5E1;
}

.cs-cta h2 {
  margin-bottom: 30px;
  color: #FFF5E1;
}


/* ================= PREMIUM FLIP CARDS ================= */

.cs-card {
  perspective: 1000px;
  height: 220px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(.4,.2,.2,1);
  transform-style: preserve-3d;
}

.cs-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  backface-visibility: hidden;
}

/* Front Side */
.card-front {
  background: linear-gradient(135deg, #FFF5E1, #f3e6d9);
  border: 1px solid #e0d5c8;
  box-shadow: 0 10px 30px rgba(93, 64, 55, 0.1);
}

.card-front h3 {
  font-size: 20px;
  font-weight: 600;
}

/* Back Side */
.card-back {
  background: linear-gradient(135deg, #5D4037, #3e2723);
  color: #FFF5E1;
  transform: rotateY(180deg);
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.card-back p {
  font-size: 15px;
  line-height: 1.6;
}

/* Hover Depth Effect */
.cs-card:hover {
  transform: translateY(-8px);
}

/* ================= PREMIUM WHY SECTION ================= */

.cs-why {
  padding: 120px 0;
  background: linear-gradient(135deg, #3e2723, #5D4037);
  color: #FFF5E1;
  position: relative;
  overflow: hidden;
}

/* Subtle Glow Background */
.cs-why::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,245,225,0.2), transparent 70%);
  top: -100px;
  right: -100px;
  z-index: 0;
}

.why-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* LEFT SIDE */

.why-left {
  flex: 1;
}

.why-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-bottom: 20px;
}

.why-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-left p {
  opacity: 0.85;
  margin-bottom: 30px;
  max-width: 450px;
}

.why-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #FFF5E1;
  color: #5D4037;;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.why-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* RIGHT SIDE */

.why-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.why-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 16px;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.1);
}

.why-card:hover {
  transform: translateX(10px);
  background: rgba(255,255,255,0.15);
}

.why-icon {
  font-size: 22px;
  margin-bottom: 12px;
}

.why-card h4 {
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  opacity: 0.85;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .why-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .why-left p {
    margin: auto auto 30px;
  }

  .why-right {
    width: 100%;
  }

  .why-card:hover {
    transform: translateY(-6px);
  }
}
/* PROCESS SECTION */

.cs-process{
padding:120px 0;
background:#f5f0eb;
text-align:center;
}

/* HEADER */

.process-header{
max-width:720px;
margin:auto;
margin-bottom:60px;
}

.process-header h2{
font-size:40px;
color:#5D4037;
margin-bottom:15px;
}

.process-header p{
opacity:0.8;
line-height:1.6;
}

/* SLIDER */

.process-slider{
display:flex;
gap:30px;
overflow-x:auto;
scroll-snap-type:x mandatory;
padding-bottom:20px;
}

.process-slider::-webkit-scrollbar{
display:none;
}

/* CARD */

.process-card{
min-width:320px;
flex:0 0 auto;
background:white;
border-radius:18px;
padding:35px;
box-shadow:0 20px 40px rgba(0,0,0,0.08);
scroll-snap-align:center;
transition:.4s;
}

.process-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,0.12);
}

.process-card img{
width:120px;
margin-bottom:20px;
}

.process-card h3{
color:#5D4037;
margin-bottom:12px;
font-size:20px;
}

.process-card p{
line-height:1.6;
opacity:.85;
font-size:14px;
}

/* DOT NAV */

.process-dots{
margin-top:30px;
display:flex;
justify-content:center;
gap:10px;
}

.dot{
width:10px;
height:10px;
background:#d7ccc8;
border-radius:50%;
transition:.3s;
}

.dot.active{
background:#5D4037;
transform:scale(1.4);
}

/* MOBILE */
/* ================= PROCESS MOBILE ================= */

@media (max-width:768px){

.process-slider{
padding-left:16px;
padding-right:16px;
scroll-padding-left:16px;
}

/* one card visible */

.process-card{
min-width:85vw;
max-width:85vw;
padding:24px;
}

/* smaller image */

.process-card img{
width:90px;
margin-bottom:16px;
}

/* smaller heading */

.process-card h3{
font-size:18px;
margin-bottom:10px;
}

/* smaller paragraph */

.process-card p{
font-size:13px;
line-height:1.5;
}

/* header responsive */

.process-header h2{
font-size:28px;
}

.process-header p{
font-size:14px;
}

/* dots smaller */

.process-dots{
margin-top:20px;
}

.dot{
width:8px;
height:8px;
}

}


/* PRICING SECTION STYLES */
.cs-pricing {
  padding: 140px 0;
  background: #f5f0eb;
  text-align: center;
}

.pricing-header h2 {
  font-size: 42px;
  color: #5D4037;;
  margin-bottom: 15px;
}

.pricing-header p {
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* TOGGLE */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
  font-weight: 600;
  color: #5D4037;;
}
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
}
.switch input {display:none;}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 28px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider {background-color: #5D4037;;}
input:checked + .slider:before {transform: translateX(32px);}

/* PRICING CARDS */
.pricing-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.pricing-card {
  background: white;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  flex: 1 1 280px;
  max-width: 350px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card.popular {
  border: 3px solid #5D4037;;
  transform: scale(1.05);
}

.popular-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #5D4037;;
  color: white;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
}

.pricing-card h3 {
  color: #5D4037;;
  margin-bottom: 20px;
  font-size: 24px;
}

.price {
  font-size: 36px;
  font-weight: 700;
  color: #5D4037;;
  margin-bottom: 15px;
}

.pricing-card p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.pricing-card ul li {
  margin-bottom: 10px;
}

.pricing-card button {
  background: #5D4037;;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}
.pricing-card button:hover {
  background: #3e2f27;
}

/* Old price */
.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 20px;
  margin-right: 8px;
}

/* Discounted price */
.discounted-price {
  font-size: 32px;
  font-weight: 700;
  color: #5D4037;;
}

/* Discount badge */
.discount-badge {
  background: #facc15;
  color: #5D4037;;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 6px;
}

/* Ensure Select Plan button always at bottom */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 460px; /* set consistent card height */
}
.pricing-cards::-webkit-scrollbar {
  display: none; /* Hide scrollbar on WebKit browsers */
}
/* Horizontal sliding pricing cards on small screens */
@media (max-width: 768px) {
  .pricing-cards {
    display: flex;
    flex-wrap: nowrap;           
    overflow-x: auto;            
    gap: 20px;
    padding: 20px 0;            /* Add vertical padding for spacing */
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start; /* Important: align cards to start */
  }

  .pricing-card {
    flex: 0 0 280px;             
    scroll-snap-align: start;    
  }
}
@media (max-width: 768px) {
  /* Pricing Cards Container - horizontal scroll */
  .pricing-cards {
    display: flex;
    flex-wrap: nowrap;           
    overflow-x: auto;            
    gap: 20px;
    padding: 20px 0;            
    scroll-snap-type: x mandatory; 
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start; 
  }

  .pricing-card {
    flex: 0 0 280px;             
    scroll-snap-align: start;    
  }

  /* Smaller Fonts for Mobile */
  .pricing-header h2 {
    font-size: 28px;   /* smaller than desktop */
  }

  .pricing-header p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .pricing-card h3 {
    font-size: 20px;
  }

  .price {
    font-size: 28px;
  }

  .old-price {
    font-size: 16px;
  }

  .discounted-price {
    font-size: 24px;
  }

  .pricing-card p,
  .pricing-card ul li {
    font-size: 13px;
  }

  .pricing-card button {
    padding: 10px 20px;
    font-size: 14px;
  }

  .popular-tag {
    font-size: 10px;
    padding: 4px 10px;
  }

  .discount-badge {
    font-size: 10px;
    padding: 2px 4px;
  }
}



/* TECHNOLOGY SECTION */

.cs-tech{
padding:120px 0;
background:#ffffff;
text-align:center;
color: #f5f0eb;
}

.tech-title{
font-size:38px;
color:#5D4037;
margin-bottom:10px;
}

.tech-subtitle{
color:#b3b2b2;
margin-bottom:60px;
}

/* GRID */

.tech-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* CARD */

.tech-card{
background:white;
padding:35px;
border-radius:16px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
transition:all .35s ease;
cursor:pointer;
}

.tech-card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

/* ICON */

.tech-card img{
height:60px;
margin-bottom:15px;
}

/* TEXT */

.tech-card h4{
color:#5D4037;
font-size:16px;
}

@media(max-width:1000px){

.tech-grid{
grid-template-columns:repeat(3,1fr);
}

}

@media(max-width:768px){

.tech-grid{
grid-template-columns:repeat(2,1fr);
}

.tech-title{
font-size:28px;
}

}

@media(max-width:480px){

.tech-grid{
grid-template-columns:1fr;
}

}





.cs-industries{
padding:100px 0;
}

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

.industry-card{
background:#fff;
border-radius:12px;
padding:40px;
text-align:center;
box-shadow:0 10px 25px rgba(0,0,0,0.05);
transition:.3s;
}

.industry-card i{
font-size:35px;
color:#5D4037;
margin-bottom:10px;
}

.industry-card:hover{
transform:translateY(-8px);
}



/* PORTFOLIO SECTION */

.cs-portfolio{
padding:120px 0;
background:white;
text-align:center;
}

.portfolio-title{
font-size:38px;
color:#5D4037;
margin-bottom:10px;
}

.portfolio-subtitle{
color:#777;
margin-bottom:60px;
}

/* GRID */

.portfolio-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* CARD */

.portfolio-card{
position:relative;
overflow:hidden;
border-radius:18px;
cursor:pointer;
box-shadow:0 20px 40px rgba(0,0,0,0.1);
transition:.4s;
}

.portfolio-card img{
width:100%;
height:320px;
object-fit:cover;
transition:.4s;
}

/* CONTENT */

.portfolio-content{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:30px;
background:linear-gradient(
to top,
rgba(0,0,0,0.8),
transparent
);
color:white;
text-align:left;
transition:.4s;
}

.portfolio-content h3{
margin-bottom:10px;
}

.portfolio-content p{
font-size:14px;
margin-bottom:10px;
opacity:.9;
}

.portfolio-content span{
font-size:13px;
opacity:.8;
}

/* HOVER EFFECT */

.portfolio-card:hover img{
transform:scale(1.1);
}

.portfolio-card:hover{
transform:translateY(-10px);
}

@media(max-width:900px){

.portfolio-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.portfolio-grid{
grid-template-columns:1fr;
}

.portfolio-title{
font-size:28px;
}

}








.cs-faq{
padding:100px 0;
}

.faq-container{
max-width:800px;
margin:auto;
}

.faq-item{
border-bottom:1px solid #eee;
padding:20px 0;
cursor:pointer;
}

.faq-question{
font-weight:600;
font-size:18px;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .3s ease;
color:#666;
margin-top:10px;
}

.faq-item.active .faq-answer{
max-height:200px;
}
.faq-load-more{
text-align:center;
margin-top:30px;
}

.faq-load-more button{
background:#5D4037;
color:#FFF5E1;
border:none;
padding:12px 28px;
border-radius:8px;
cursor:pointer;
font-size:14px;
transition:0.3s;
}

.faq-load-more button:hover{
background:#3e2723;
}

@media (max-width:768px){

.section-header h2{
font-size:30px;
}

.tech-card{
padding:20px;
}

.industry-card{
padding:25px;
}

.portfolio-card img{
height:160px;
}

}



/* ================= MOBILE CARD SCROLL ================= */

@media (max-width:600px){

/* ---------- TECH SECTION ---------- */

.tech-grid{
display:flex;
overflow-x:auto;
gap:16px;
scroll-snap-type:x mandatory;
padding:10px;
}

.tech-grid::-webkit-scrollbar{
display:none;
}

.tech-card{
min-width:160px;
flex:0 0 auto;
scroll-snap-align:start;
}


/* ---------- INDUSTRIES SECTION ---------- */

.industry-grid{
display:flex;
overflow-x:auto;
gap:16px;
scroll-snap-type:x mandatory;
padding:10px;
}

.industry-grid::-webkit-scrollbar{
display:none;
}

.industry-card{
min-width:160px;
flex:0 0 auto;
scroll-snap-align:start;
}
.tech-grid,
.industry-grid,
.portfolio-grid{
-webkit-overflow-scrolling:touch;
}


/* ---------- PORTFOLIO SECTION ---------- */

.portfolio-grid{
display:flex;
overflow-x:auto;
gap:18px;
scroll-snap-type:x mandatory;
padding-bottom:10px;
}

.portfolio-grid::-webkit-scrollbar{
display:none;
}

.portfolio-card{
/* min-height: 300px; */
min-width:260px;
flex:0 0 auto;
scroll-snap-align:start;
}

.portfolio-card img{
min-height:180px;
}

}
/* ================= BOOKING CTA ================= */

.cs-booking{
padding:120px 0;
background:#f5f0eb;
}

/* Layout */

.booking-wrapper{
display:grid;
grid-template-columns:1.4fr 1fr;
gap:50px;
align-items:start;
}

/* LEFT SIDE */

.booking-calendar h2{
font-size:36px;
color:#5D4037;
margin-bottom:10px;
}

.booking-calendar p{
color:#666;
margin-bottom:25px;
max-width:500px;
}

/* Calendly frame */

.booking-calendar iframe{
border-radius:14px;
box-shadow:0 15px 35px rgba(0,0,0,0.08);
background:white;
}

/* RIGHT FORM */

.booking-form{
background:white;
padding:40px;
border-radius:18px;
box-shadow:0 20px 50px rgba(0,0,0,0.08);
position:sticky;
top:120px;
}

.booking-form h3{
color:#5D4037;
margin-bottom:25px;
}

/* FORM */

.form-group{
margin-bottom:16px;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:12px 14px;
border-radius:8px;
border:1px solid #e5e5e5;
font-size:14px;
font-family:'Segoe UI',sans-serif;
transition:.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
outline:none;
border-color:#5D4037;
box-shadow:0 0 0 2px rgba(93,64,55,0.1);
}

/* Button */

.submit-btn{
width:100%;
padding:14px;
border:none;
border-radius:8px;
background:#5D4037;
color:white;
font-weight:600;
font-size:15px;
cursor:pointer;
transition:.3s;
}

.submit-btn:hover{
background:#3e2723;
transform:translateY(-2px);
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px){

/* stack sections vertically */

.booking-wrapper{
grid-template-columns:1fr;
gap:40px;
}

/* remove sticky form for mobile */

.booking-form{
position:relative;
top:auto;
}

/* reduce section padding */

.cs-booking{
padding:70px 20px;
}

/* adjust heading size */

.booking-calendar h2{
font-size:28px;
}

/* reduce calendly height */

.booking-calendar iframe{
height:500px;
}

}


/* TRUST SECTION */

.cs-trust{
padding:110px 0;
background:white;
text-align:center;
}

.trust-title{
font-size:38px;
color:#5D4037;
margin-bottom:10px;
}

.trust-subtitle{
color:#777;
margin-bottom:60px;
}

/* METRICS */

.trust-metrics{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-bottom:60px;
}

.metric{
background:#f5f0eb;
padding:35px;
border-radius:14px;
transition:.3s;
}

.metric:hover{
transform:translateY(-6px);
}

.metric h3{
font-size:40px;
color:#5D4037;
margin-bottom:5px;
}

.metric p{
color:#555;
font-size:15px;
}

/* CLIENT LOGOS */

.client-logos{
display:flex;
justify-content:center;
align-items:center;
gap:50px;
flex-wrap:wrap;
opacity:.8;
}

.client-logos img{
height:35px;
filter:grayscale(100%);
transition:.3s;
}

.client-logos img:hover{
filter:grayscale(0%);
opacity:1;
}

@media(max-width:900px){

.trust-metrics{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:500px){

.trust-metrics{
grid-template-columns:1fr;
}

.trust-title{
font-size:28px;
}

}

/* RESPONSIVE FOR MOBILE */
@media (max-width: 768px) {
  .cta-content {
    flex-direction: column;
    gap: 30px;
  }

  .cta-calendly iframe {
    height: 400px;
  }
}