/* ======================================================
   ROOT VARIABLES
====================================================== */
:root{
  --dark:#2f4154;
  --orange:#f28b2b;
  --gold:#e1b84c;
  --text:#1f2933;
  --muted:#6b7280;
  --border:#e5e7eb;
  --white:#ffffff;
}

/* ======================================================
   RESET & BASE
====================================================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Inter,sans-serif;
  color:var(--text);
  background:#fff;
  line-height:1.6;
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

/* ======================================================
   CONTAINER
====================================================== */
.container{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* ======================================================
   NAVBAR (DESKTOP)
====================================================== */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid var(--border);
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:78px;
}

/* LOGO */
.logo-wrap{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo-icon{
  width:34px;
  height:auto;
}

.logo-text strong{
  font-family:"Playfair Display",serif;
  font-size:20px;
  line-height:1.1;
  color:var(--text);
}

.logo-text span{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.4px;
}

/* DESKTOP NAV */
.desktop{
  display:flex;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-links a{
  font-size:14px;
  font-weight:500;
  position:relative;
}

.nav-links a.active{
  color:var(--orange);
}

.nav-links a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:100%;
  height:2px;
  background:var(--orange);
}

/* ACTIONS */
.nav-actions{
  display:flex;
  align-items:center;
  gap:24px;
}

.client-login{
  font-size:14px;
  font-weight:500;
}

.cta-btn{
  background:var(--gold);
  color:#fff;
  padding:12px 18px;
  border-radius:6px;
  font-size:14px;
  font-weight:600;
  white-space:nowrap;
}

/* ======================================================
   HAMBURGER BUTTON (ANIMATED)
====================================================== */
.menu-btn{
  display:none;
  width:32px;
  height:24px;
  position:relative;
  background:none;
  border:none;
  cursor:pointer;
}

.menu-btn span{
  position:absolute;
  left:0;
  width:100%;
  height:3px;
  background:var(--text);
  transition:.3s ease;
}

.menu-btn span:nth-child(1){ top:0; }
.menu-btn span:nth-child(2){ top:10px; }
.menu-btn span:nth-child(3){ top:20px; }

.menu-btn.active span:nth-child(1){
  transform:rotate(45deg);
  top:10px;
}

.menu-btn.active span:nth-child(2){
  opacity:0;
}

.menu-btn.active span:nth-child(3){
  transform:rotate(-45deg);
  top:10px;
}

/* ======================================================
   MOBILE OVERLAY & DRAWER
====================================================== */
.mobile-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.45);
  opacity:0;
  pointer-events:none;
  transition:.3s ease;
  z-index:999;
}

.mobile-overlay.show{
  opacity:1;
  pointer-events:auto;
}

.mobile-drawer{
  position:fixed;
  top:0;
  right:0;
  width:85%;
  max-width:340px;
  height:100%;
  background:#fff;
  transform:translateX(100%);
  transition:.35s ease;
  z-index:1000;
  padding:24px;
  display:flex;
  flex-direction:column;
  touch-action:pan-y;
}

.mobile-drawer.open{
  transform:translateX(0);
}

/* MOBILE HEADER (COMPANY BRANDING) */
.mobile-header{
  padding-bottom:16px;
  margin-bottom:16px;
  border-bottom:1px solid var(--border);
}

.mobile-logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.mobile-logo img{
  width:36px;
  height:auto;
}

.mobile-logo-text strong{
  font-family:"Playfair Display",serif;
  font-size:20px;
  line-height:1.1;
}

.mobile-logo-text span{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.4px;
}

/* MOBILE NAV */
.mobile-nav a{
  display:block;
  font-size:17px;
  font-weight:500;
  padding:14px 0;
  border-bottom:1px solid #eee;
}

.mobile-nav a.active{
  color:var(--orange);
}

/* MOBILE ACTIONS */
.mobile-actions{
  margin-top:auto;
  padding-top:20px;
  border-top:1px solid var(--border);
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* ======================================================
   HERO SLIDER
====================================================== */
.hero-slider{
  position:relative;
  height:90vh;
  overflow:hidden;
}

.slides{
  position:relative;
  height:100%;
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  transition:opacity .8s ease;
  display:flex;
  align-items:center;
}

.slide.active{
  opacity:1;
  z-index:2;
}

.slide-dark{
  background:var(--dark);
}

.slide-image{
  background-size:cover;
  background-position:center;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

/* HERO CONTENT */
.hero-content{
  position:relative;
  color:#fff;
  max-width:650px;
}

.tag{
  display:flex;
  align-items:center;
  font-size:12px;
  letter-spacing:1.5px;
  margin-bottom:14px;
}

.tag::before{
  content:"";
  width:8px;
  height:8px;
  background:var(--orange);
  border-radius:50%;
  margin-right:10px;
}

.hero-content h1{
  font-family:"Playfair Display",serif;
  font-size:56px;
  line-height:1.15;
  margin-bottom:20px;
}

.hero-content p{
  max-width:520px;
  margin-bottom:32px;
}

/* HERO CTA */
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn-primary{
  background:var(--orange);
  color:#fff;
  padding:12px 18px;
  border-radius:6px;
  font-weight:600;
}

.btn-outline{
  border:1px solid #fff;
  color:#fff;
  padding:12px 18px;
  border-radius:6px;
}

/* SLIDER CONTROLS */
.nav-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(255,255,255,.2);
  border:none;
  width:46px;
  height:46px;
  border-radius:50%;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  z-index:10;
}

.prev{ left:30px; }
.next{ right:30px; }

.slider-dots{
  position:absolute;
  bottom:36px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
}

.dot{
  width:32px;
  height:4px;
  background:rgba(255,255,255,.4);
  border-radius:3px;
}

.dot.active{
  background:var(--orange);
}

/* ======================================================
   CONTENT
====================================================== */
/* ======================================================
   SERVICES SECTION
====================================================== */
.services-section{
  padding:100px 0;
  background:#fafafa;
}

.services-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 60px;
}

.services-tag{
  display:inline-block;
  color:var(--orange);
  font-size:12px;
  font-weight:600;
  letter-spacing:1.4px;
  margin-bottom:12px;
}

.services-header h2{
  font-family:"Playfair Display",serif;
  font-size:40px;
  color:var(--dark);
  margin-bottom:14px;
}

.services-header p{
  color:#6b7280;
  font-size:16px;
}

/* GRID */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* CARD */
.service-card{
  background:#fff;
  border-radius:14px;
  padding:30px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  position:relative;
  transition:.3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
}

/* FEATURED CARD IMAGE */
.service-image{
  width:100%;
  border-radius:12px;
  margin-bottom:24px;
}

/* ICON */
.service-icon{
  width:44px;
  height:44px;
  background:var(--orange);
  color:#fff;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  margin-bottom:18px;
}

.overlay-icon{
  position:absolute;
  top:18px;
  left:18px;
}

/* TEXT */
.service-card h3{
  font-family:"Playfair Display",serif;
  font-size:22px;
  margin-bottom:10px;
}

.service-card p{
  font-size:14px;
  color:#6b7280;
  margin-bottom:16px;
}

/* LIST */
.service-card ul{
  list-style:none;
  margin-bottom:20px;
}

.service-card ul li{
  font-size:14px;
  margin-bottom:10px;
  padding-left:22px;
  position:relative;
}

.service-card ul li::before{
  content:"✔";
  position:absolute;
  left:0;
  color:var(--orange);
  font-size:12px;
}





/* ================= SERVICES – PREMIUM INTERACTIONS ================= */

/* Initial state for GSAP */
.services-header,
.service-card,
.services-cta{
  opacity:0;
  transform:translateY(40px);
}

/* Card hover refinement */
.service-card{
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}

/* Featured card emphasis */
.service-card.featured{
  border:1px solid rgba(242,139,43,.25);
}

/* Image micro interaction */
.service-image{
  transition:transform .6s ease;
}

.service-card:hover .service-image{
  transform:scale(1.04);
}

/* Icon micro motion */
.service-icon{
  transition:transform .3s ease;
}

.service-card:hover .service-icon{
  transform:rotate(-5deg) scale(1.05);
}


/* ================= SERVICES IMAGES ================= */

.service-image-wrap{
  position:relative;
  border-radius:12px;
  overflow:hidden;
  margin-bottom:22px;
}

.service-image-wrap img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transition:transform .6s ease;
}

/* Icon on image */
.service-image-wrap .service-icon{
  position:absolute;
  top:16px;
  left:16px;
  width:44px;
  height:44px;
  background:var(--orange);
  color:#fff;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
}

/* Image hover effect */
.service-card:hover .service-image-wrap img{
  transform:scale(1.05);
}

/* Featured card emphasis */
.service-card.featured{
  border:1px solid rgba(242,139,43,.35);
}







/* LINK */
.learn-more{
  font-size:14px;
  font-weight:600;
  color:var(--orange);
}

/* CTA */
.services-cta{
  text-align:center;
  margin-top:50px;
}

.btn-dark{
  background:var(--dark);
  color:#fff;
  padding:14px 26px;
  border-radius:8px;
  font-weight:600;
  display:inline-block;
}



/* ======================================================
   FEATURED PROJECTS / PORTFOLIO
====================================================== */

.portfolio-section{
  padding:100px 0;
  background:#ffffff;
}

/* ---------- HEADER ---------- */
.portfolio-header{
  text-align:center;
  max-width:720px;
  margin:0 auto 50px;
  opacity:0;
  transform:translateY(40px);
}

.portfolio-tag{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  letter-spacing:1.4px;
  color:var(--orange);
}

.portfolio-header h2{
  font-family:"Playfair Display", serif;
  font-size:40px;
  margin:14px 0;
  color:var(--dark);
}

.portfolio-header p{
  color:#6b7280;
  font-size:16px;
}

/* ---------- FILTER BUTTONS ---------- */
.portfolio-filters{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-bottom:50px;
  opacity:0;
  transform:translateY(40px);
}

.filter-btn{
  padding:10px 20px;
  font-size:14px;
  font-weight:500;
  border-radius:6px;
  border:1px solid #e5e7eb;
  background:#ffffff;
  color:#1f2933;
  cursor:pointer;
  transition:.25s ease;
}

.filter-btn:hover{
  border-color:var(--orange);
  color:var(--orange);
}

.filter-btn.active{
  background:var(--orange);
  color:#ffffff;
  border-color:var(--orange);
}

/* ---------- GRID ---------- */
.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* ---------- CARD ---------- */
.portfolio-card{
  background:#ffffff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    opacity .35s ease;
  opacity:0;
  transform:translateY(40px);
}

.portfolio-card:hover{
  transform:translateY(-10px);
  box-shadow:0 22px 50px rgba(0,0,0,.14);
}

/* Filtering helper */
.portfolio-card.hidden{
  opacity:0;
  transform:scale(.96);
  pointer-events:none;
  position:absolute;
}

/* ---------- IMAGE ---------- */
.portfolio-image{
  position:relative;
  overflow:hidden;
}

.portfolio-image img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
  transition:transform .6s ease;
}

.portfolio-card:hover .portfolio-image img{
  transform:scale(1.06);
}

/* Badge */
.badge{
  position:absolute;
  top:14px;
  right:14px;
  background:var(--orange);
  color:#ffffff;
  font-size:12px;
  padding:6px 12px;
  border-radius:20px;
  font-weight:500;
}

/* ---------- CONTENT ---------- */
.portfolio-content{
  padding:22px;
}

.portfolio-content h3{
  font-family:"Playfair Display", serif;
  font-size:20px;
  margin-bottom:6px;
  color:var(--dark);
}

.location{
  font-size:13px;
  color:#6b7280;
}

.portfolio-content p{
  font-size:14px;
  color:#6b7280;
  margin:14px 0;
}

/* ---------- TAGS ---------- */
.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.tags span{
  background:#f3f4f6;
  color:#374151;
  font-size:12px;
  padding:6px 12px;
  border-radius:14px;
}

/* ---------- CTA ---------- */
.portfolio-cta{
  text-align:center;
  margin-top:55px;
  opacity:0;
  transform:translateY(40px);
}

.portfolio-cta .btn-dark{
  background:var(--dark);
  color:#ffffff;
  padding:14px 28px;
  border-radius:8px;
  font-weight:600;
  display:inline-block;
  transition:.25s ease;
}

.portfolio-cta .btn-dark:hover{
  background:#1f2d3d;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1024px){
  .portfolio-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width:768px){
  .portfolio-grid{
    grid-template-columns:1fr;
  }

  .portfolio-header h2{
    font-size:32px;
  }

  .portfolio-filters{
    flex-wrap:wrap;
    gap:10px;
  }
}







/* ==========================================================
   TESTIMONIALS — FINAL RESPONSIVE VERSION
========================================================== */

.testimonials{
  padding:100px 0;
  background:#ffffff;
}

/* Section headings */
.testimonials .section-tag{
  display:block;
  text-align:center;
  color:#f08a24;
  font-weight:600;
  letter-spacing:0.08em;
  font-size:13px;
  margin-bottom:12px;
}

.testimonials .section-title{
  text-align:center;
  font-family:'Playfair Display', serif;
  font-size:44px;
  color:#2f4053;
  margin-bottom:14px;
}

.testimonials .section-sub{
  max-width:640px;
  margin:0 auto 60px;
  text-align:center;
  color:#7a8793;
  font-size:16px;
  line-height:1.6;
}

/* Wrapper */
.testimonial-wrapper{
  max-width:920px;
  margin:0 auto;
  position:relative;
}

/* Slider */
.testimonial-slider{
  position:relative;
}

/* Card */
.testimonial-card{
  background:#ffffff;
  border-radius:18px;
  padding:48px 56px;
  box-shadow:0 25px 50px rgba(0,0,0,0.08);
  display:none;
  gap:28px;
  align-items:flex-start;
}

/* Active card */
.testimonial-card.active{
  display:flex;
}

/* Avatar */
.testimonial-avatar{
  width:80px;
  height:80px;
  border-radius:50%;
  background:#f1f3f6;
  flex-shrink:0;
}

/* Content */
.testimonial-stars{
  color:#f08a24;
  font-size:18px;
  margin-bottom:12px;
}

.testimonial-text{
  font-size:17px;
  line-height:1.7;
  color:#2f4053;
  margin-bottom:22px;
}

/* Author */
.testimonial-author strong{
  display:block;
  font-size:16px;
  color:#2f4053;
}

.testimonial-author span{
  display:block;
  font-size:14px;
  color:#7a8793;
  margin-top:4px;
}

.testimonial-author small{
  display:block;
  margin-top:6px;
  font-size:13px;
  color:#f08a24;
}

/* Controls */
.testimonial-controls{
  display:flex;
  justify-content:center;
  gap:14px;
  margin-top:32px;
}

.testimonial-btn{
  width:42px;
  height:42px;
  border-radius:50%;
  border:none;
  background:#f1f3f6;
  font-size:22px;
  cursor:pointer;
  transition:all .3s ease;
}

.testimonial-btn:hover{
  background:#f08a24;
  color:#ffffff;
}

/* Dots */
.testimonial-dots{
  margin-top:22px;
  display:flex;
  justify-content:center;
  gap:10px;
}

.testimonial-dots .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#e0e4ea;
  transition:all .3s ease;
}

.testimonial-dots .dot.active{
  width:22px;
  border-radius:6px;
  background:#f08a24;
}

/* ================= TABLET ================= */
@media(max-width:1024px){
  .testimonial-card{
    padding:40px 44px;
  }

  .testimonials .section-title{
    font-size:38px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .testimonials{
    padding:80px 0;
  }

  .testimonials .section-title{
    font-size:32px;
  }

  .testimonial-card{
    flex-direction:column;
    padding:30px 26px;
    gap:18px;
  }

  .testimonial-avatar{
    width:64px;
    height:64px;
  }

  .testimonial-text{
    font-size:15px;
  }

  .testimonial-controls{
    margin-top:24px;
  }

  .testimonial-dots{
    margin-top:18px;
  }
}




/* ==========================================================
   FINAL CTA SECTION
========================================================== */

.final-cta{
  padding:110px 0;
  background:linear-gradient(
    135deg,
    #f08a24 0%,
    #f3b176 45%,
    #f7d6b3 100%
  );
  text-align:center;
  color:#ffffff;
}

.final-cta h2{
  font-family:'Playfair Display', serif;
  font-size:48px;
  margin-bottom:20px;
}

.final-cta p{
  max-width:760px;
  margin:0 auto 40px;
  font-size:18px;
  line-height:1.7;
  opacity:0.95;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:50px;
  flex-wrap:wrap;
}

/* Buttons */
.btn-primary{
  background:#ffffff;
  color:#f08a24;
  padding:16px 34px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  transition:.3s ease;
}

.btn-primary:hover{
  background:#2f4053;
  color:#ffffff;
}

.btn-outline{
  border:2px solid #ffffff;
  color:#ffffff;
  padding:16px 34px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  transition:.3s ease;
}

.btn-outline:hover{
  background:#ffffff;
  color:#f08a24;
}

/* Contact Pills */
.cta-contact{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.cta-pill{
  background:rgba(255,255,255,0.18);
  padding:14px 26px;
  border-radius:40px;
  font-size:15px;
  backdrop-filter:blur(6px);
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .final-cta{
    padding:90px 20px;
  }

  .final-cta h2{
    font-size:36px;
  }

  .final-cta p{
    font-size:16px;
  }

  .cta-buttons{
    gap:14px;
  }
}









/* ================= RESPONSIVE ================= */
@media(max-width:1024px){
  .services-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:768px){
  .services-grid{
    grid-template-columns:1fr;
  }

  .services-header h2{
    font-size:32px;
  }
}


/* ================= FOOTER ================= */

.site-footer{
  background:#2f4053;
  color:#cbd5df;
  padding:80px 0 30px;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  padding:0 24px;
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:60px;
}

.footer-logo{
  display:flex;
  gap:14px;
  margin-bottom:20px;
}

.footer-logo img{ width:44px; }

.footer-logo span{
  font-size:18px;
  font-weight:600;
  color:#fff;
}

.footer-logo small{
  display:block;
  font-size:13px;
  color:#cbd5df;
}

.footer-brand p{
  max-width:380px;
  line-height:1.7;
}

.footer-socials{
  display:flex;
  gap:14px;
  margin-top:22px;
}

.footer-socials a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  transition:.3s;
}

.footer-socials a:hover{ background:#f08a24; }

.footer-socials svg{
  width:20px;
  height:20px;
  fill:currentColor;
}

.footer-links h4{
  color:#fff;
  margin-bottom:18px;
}

.footer-links ul{ list-style:none; padding:0; }

.footer-links li{ margin-bottom:12px; }

.footer-links a{
  color:#cbd5df;
  transition:.3s;
}

.footer-links a:hover{ color:#f08a24; }

.footer-bottom{
  max-width:1200px;
  margin:50px auto 0;
  padding:24px;
  border-top:1px solid rgba(255,255,255,.12);
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:16px;
}

.footer-meta{
  font-size:13px;
  color:#9fb0c2;
}

.footer-legal{ display:flex; gap:24px; }

.footer-legal a{ color:#cbd5df; }

.footer-legal a:hover{ color:#f08a24; }

/* Responsive */
@media(max-width:900px){
  .footer-container{ grid-template-columns:1fr 1fr; }
}

@media(max-width:600px){
  .footer-container{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
}



/* ======================================================
   RESPONSIVE
====================================================== */
@media(max-width:1024px){
  .desktop{
    display:none;
  }
  .menu-btn{
    display:block;
  }
}

@media(max-width:768px){

  .hero-content h1{
    font-size:38px;
  }

  /* FIXED MOBILE CTA */
  .hero-actions{
    flex-direction:column;
    max-width:320px;
  }

  .hero-actions a{
    width:100%;
    text-align:center;
    white-space:nowrap;
  }

  .nav-arrow{
    display:none;
  }
}
