/* =====================================================
 style-home.css — varian desain homepage
 Dimuat setelah style.css pada index.html saja
 ===================================================== */

/* =====================================================
GLOBAL STYLE
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#c22213;
    overflow-x:hidden;
}

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

section{
    padding:100px 0;
}

h1,h2,h3,h4{
    line-height:1.3;
}

p{
    line-height:1.8;
    color:#555;
}

.img-responsive{
    max-width:100%;
    height:auto;
}

.btn-primary{
    display:inline-block;
    padding:16px 34px;
    background:#f9961e;
    color:#fff;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
    transition:0.4s ease;
    box-shadow:0 10px 30px rgba(13,71,161,0.25);
}

.btn-primary:hover{
    transform:translateY(-5px);
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#1f1e1d;
    margin-bottom:15px;
}

.section-title p{
    max-width:700px;
    margin:auto;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
}

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

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(14px);
    box-shadow:0 2px 20px rgba(0,0,0,0.05);
}

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:15px 0;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:20px;
    font-weight:300;
    color:#1b1b1b;
    margin-right:auto;
}

.logo img{
    width:50px;
    height:auto;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.25;
}

.logo-subtitle{
    font-size:11px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    background:linear-gradient(120deg,#f9961e,#c22213);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* MENU */
.nav-menu{
    display:flex;
    gap:35px;
}

.nav-menu a{
    text-decoration:none;
    color:#111;
    font-weight:500;
    transition:0.3s;
}

.nav-menu a:hover{
    color:#0d47a1;
}

/* NAV CTA (TP DOC) */
.nav-menu a.nav-cta{
    display:inline-block;
    border:2px solid #f9961e;
    color:#f9961e;
    font-weight:600;
    padding:9px 26px;
    border-radius:999px;
    transition:0.3s;
}

.nav-menu a.nav-cta:hover{
    background:#f9961e;
    color:#fff;
    box-shadow:0 8px 20px rgba(249,150,30,0.35);
}

/* TOGGLE BUTTON */
.menu-toggle{
    display:none;
    width:46px;
    height:46px;
    border-radius:12px;
    background:#f6f7f9;
    border:1px solid #e8eaee;
    font-size:22px;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    line-height:1;
    transition:0.3s;
    user-select:none;
    flex-shrink:0;
}

.menu-toggle:hover{
    background:#fff5ec;
    border-color:#f9961e;
}

/* LANGUAGE SWITCH */
.lang-switch{
    display:flex;
    align-items:center;
    gap:4px;
    background:rgba(0,0,0,0.06);
    border-radius:999px;
    padding:4px;
}

.lang-opt{
    padding:7px 16px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
    cursor:pointer;
    color:#666;
    transition:0.3s;
    user-select:none;
}

.lang-opt.active{
    background:linear-gradient(135deg,#f9961e,#c22213);
    color:#fff;
    box-shadow:0 4px 14px rgba(249,150,30,0.35);
}

/* LANGUAGE SWITCH INSIDE MOBILE MENU (hidden on desktop) */
.lang-switch-mobile{
    display:none;
}

/* MOBILE */
@media(max-width:991px){

    .menu-toggle{
        display:flex;
        line-height:1;
    }

    .nav-wrapper > .lang-switch{
        display:none;
    }

    .lang-switch-mobile{
        display:flex;
        justify-content:center;
        padding:14px 0 6px;
        margin-top:10px;
        background:transparent;
        border-top:1px solid #f0f1f4;
        border-radius:0;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        right:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:stretch;
        gap:4px;
        padding:16px 5%;
        display:none;
        box-shadow:0 16px 30px rgba(0,0,0,0.10);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu a{
        padding:13px 18px;
        border-radius:12px;
        text-align:center;
        font-size:15px;
        font-weight:600;
    }

    .nav-menu a:hover{
        background:#fff5ec;
        color:#f9961e;
    }

    .nav-menu a.nav-cta{
        margin-top:10px;
        padding:13px 18px;
    }
}

@media(max-width:480px){

    .logo{
        font-size:17px;
        gap:8px;
    }

    .logo img{
        width:42px;
    }
}


.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    background:#0e1322;
    overflow:hidden;
}

.hero::before{
    content:'';
    position:absolute;
    inset:0;
    z-index:1;
    background:rgba(0,0,0,0.55);
}

.hero::after{
    content:'';
    position:absolute;
    inset:-6%;
    z-index:0;
    background:url('assets/images/bekasi.jpg') center/cover no-repeat;
    animation:heroKenburns 22s ease-in-out infinite alternate;
}

@keyframes heroKenburns{
    from{
        transform:scale(1) translate(0,0);
    }
    to{
        transform:scale(1.12) translate(1.5%,1.5%);
    }
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
    color:#fff;
}

.hero-content h1{
    font-size:68px;
    font-weight:800;
    margin-bottom:25px;
    background:linear-gradient(120deg,#f9961e 0%,#ffd08a 40%,#c22213 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    color:transparent;
}

.hero-content p{
    color:#f1f1f1;
    font-size:19px;
    margin-bottom:40px;
}


.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-images{
    position:relative;
    min-height:520px;
}

.about-images img{
    position:absolute;
    border-radius:26px;
    object-fit:cover;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.about-img-1{
    width:75%;
    height:420px;
    top:0;
    left:0;
}

.about-img-2{
    width:55%;
    height:300px;
    right:0;
    bottom:0;
    border:8px solid #fff;
}

.about-content h2{
    font-size:42px;
    margin-bottom:25px;
    color:#0f172a;
}

.about-content p{
    margin-bottom:20px;
}


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

.service-card{
    background:#fff;
    padding:45px 35px;
    border-radius:24px;
    transition:0.4s;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
}

.service-card:hover{
    transform:translateY(-12px);
}

.service-icon{
    width:80px;
    height:80px;
    background:#f9961e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    font-size:30px;
    margin-bottom:25px;
}

.service-card h3{
    font-size:22px;
    margin-bottom:18px;
}

.premium-wrapper{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.top-cards,
.bottom-cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.premium-card{
    width:370px;
    border-radius:28px;
    box-shadow:0 15px 45px rgba(0,0,0,0.08);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

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


.client-carousel{
    overflow:hidden;
    position:relative;
}

.client-track{
    display:flex;
    gap:30px;
    width:max-content;
    animation:scroll 25s linear infinite;
}

.client-box{
    width:220px;
    height:120px;
    background:#fff;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.client-box img{
    max-width:130px;
    opacity:0.7;
    transition:0.3s;
}

.client-box img:hover{
    opacity:1;
}

@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}


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

@media(max-width:991px){

.hero-content h1{
    font-size:52px;
}

.about-grid,
.services-grid,
.cta-grid,
.footer-grid{
    grid-template-columns:1fr;
}

.nav-menu{
    display:none;
}

.about-images{
    min-height:420px;
}

.about-img-1{
    width:80%;
}

.about-img-2{
    width:55%;
}

.service-card,
.premium-card{
    width:100%;
}

.cta-section{
    padding:40px;
}

}

@media(max-width:768px){

.hero-content h1{
    font-size:42px;
}

.section-title h2,
.about-content h2,
.cta-content h2{
    font-size:34px;
}

}

/* =====================================================
STATS SECTION
===================================================== */

.stats-section{
    position:relative;
    background:linear-gradient(180deg,#ffffff 0%,#f5f7fb 100%);
    padding:55px 0;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.stats-section::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#f9961e,#c22213);
    z-index:2;
}

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

.stat-item{
    text-align:center;
    padding:12px 10px;
    position:relative;
}

.stat-item + .stat-item::before{
    content:'';
    position:absolute;
    top:50%;
    left:-20px;
    transform:translateY(-50%);
    width:1px;
    height:60px;
    background:linear-gradient(180deg,transparent,rgba(194,34,19,0.20),transparent);
}

.stat-icon{
    width:48px;
    height:48px;
    margin:0 auto 12px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:19px;
    color:#fff;
    background:linear-gradient(135deg,#f9961e,#c22213);
    box-shadow:0 12px 28px rgba(249,150,30,0.28);
    transition:0.4s ease;
}

.stat-item:hover .stat-icon{
    transform:translateY(-6px) scale(1.05);
}

.stat-num{
    display:block;
    font-size:42px;
    font-weight:800;
    line-height:1;
    background:linear-gradient(120deg,#f9961e,#c22213);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    color:transparent;
    margin-bottom:8px;
}

.stat-label{
    display:block;
    font-size:14px;
    font-weight:500;
    color:#6b7280;
    letter-spacing:0.3px;
    line-height:1.5;
}

@media(max-width:991px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
        gap:30px;
    }

    .stat-item + .stat-item::before{
        display:none;
    }

}

@media(max-width:768px){

    .stats-section{
        padding:45px 0;
    }

    .stat-num{
        font-size:34px;
    }

}

/* =====================================================
TP DOC SECTION
===================================================== */

.tpdoc-section{
    position:relative;
    padding:110px 0;
    background:linear-gradient(160deg,#101527 0%,#1a2138 55%,#221a35 100%);
    overflow:hidden;
}

.tpdoc-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 85% 15%, rgba(249,150,30,0.16), transparent 45%),
               radial-gradient(circle at 10% 85%, rgba(194,34,19,0.18), transparent 45%);
    pointer-events:none;
}

.tpdoc-section::after{
    content:'';
    position:absolute;
    inset:0;
    background-image:linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
                     linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size:56px 56px;
    pointer-events:none;
}

.tpdoc-section .container{
    position:relative;
    z-index:2;
}

/* HEADER */

.tpdoc-header{
    text-align:center;
    max-width:820px;
    margin:0 auto 70px;
}

.tpdoc-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 22px;
    border-radius:999px;
    background:rgba(249,150,30,0.12);
    border:1px solid rgba(249,150,30,0.35);
    color:#ffb45c;
    font-size:14px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
    margin-bottom:28px;
}

.tpdoc-title{
    font-size:72px;
    font-weight:800;
    line-height:1;
    background:linear-gradient(120deg,#f9961e 0%,#ffd08a 40%,#c22213 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    color:transparent;
    letter-spacing:2px;
    margin-bottom:12px;
}

.tpdoc-caption{
    display:block;
    font-size:17px;
    font-weight:600;
    color:rgba(255,255,255,0.85);
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.tpdoc-subtitle{
    color:rgba(255,255,255,0.72);
    font-size:16px;
    line-height:1.9;
}

/* GRID */

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

.tpdoc-card{
    position:relative;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.10);
    border-radius:26px;
    padding:42px 30px;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    overflow:hidden;
    transition:0.45s ease;
}

.tpdoc-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#f9961e,#c22213);
    opacity:0;
    transition:0.45s ease;
}

.tpdoc-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.09);
    border-color:rgba(249,150,30,0.45);
    box-shadow:0 25px 60px rgba(0,0,0,0.4);
}

.tpdoc-card:hover::before{
    opacity:1;
}

.tpdoc-card-icon{
    width:72px;
    height:72px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:#fff;
    background:linear-gradient(135deg,#f9961e,#c22213);
    box-shadow:0 12px 30px rgba(249,150,30,0.3);
    margin-bottom:26px;
    transition:0.45s ease;
}

.tpdoc-card:hover .tpdoc-card-icon{
    transform:scale(1.08) rotate(-4deg);
}

.tpdoc-card-num{
    position:absolute;
    top:26px;
    right:26px;
    font-size:42px;
    font-weight:800;
    color:rgba(255,255,255,0.07);
    line-height:1;
    transition:0.45s ease;
}

.tpdoc-card:hover .tpdoc-card-num{
    color:rgba(249,150,30,0.35);
}

.tpdoc-card h3{
    font-size:21px;
    font-weight:700;
    color:#fff;
    margin-bottom:14px;
}

.tpdoc-card p{
    color:rgba(255,255,255,0.68);
    font-size:14px;
    line-height:1.8;
}

/* CTA */

.tpdoc-cta{
    text-align:center;
}

.tpdoc-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:18px 44px;
    background:linear-gradient(135deg,#f9961e,#c22213);
    color:#fff;
    font-weight:700;
    font-size:16px;
    border-radius:16px;
    text-decoration:none;
    box-shadow:0 15px 40px rgba(194,34,19,0.4);
    transition:0.4s ease;
}

.tpdoc-btn i{
    transition:transform 0.4s ease;
}

.tpdoc-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 22px 50px rgba(194,34,19,0.5);
}

.tpdoc-btn:hover i{
    transform:translateX(6px);
}

.tpdoc-note{
    display:block;
    margin-top:22px;
    color:rgba(255,255,255,0.5);
    font-size:13px;
    letter-spacing:0.5px;
}

/* RESPONSIVE */

@media(max-width:1100px){

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

}

@media(max-width:768px){

    .tpdoc-section{
        padding:80px 0;
    }

    .tpdoc-title{
        font-size:52px;
    }

    .tpdoc-caption{
        font-size:14px;
    }

    .tpdoc-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .tpdoc-card{
        padding:34px 26px;
    }

}

/* =====================================================
PREMIUM CARD SECTION
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
    background:#f5f7fb;
}

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

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#111;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:1.7;
}

/* =====================================================
PREMIUM CARD SECTION
===================================================== */

.premium-wrapper{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.top-cards,
.bottom-cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

/* CARD */

.premium-card{
    width:370px;
    height:320px;
    border-radius:28px;
    position:relative;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 15px 45px rgba(0,0,0,0.08);
}

/* IMAGE */

.premium-card img{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

/* OVERLAY */

.card-overlay{
    position:absolute;
    inset:0;

    /* WARNA OVERLAY */
    background:rgba(249,150,30,0.68);

    /* efek blur premium */
    backdrop-filter:blur(1px);

    transition:0.4s;
    z-index:1;
}

/* TOP BORDER */

.premium-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#fff,#ffe0b2);
    z-index:3;
}

/* CONTENT */

.card-content{
    position:relative;
    z-index:2;
    padding:40px 30px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    color:#fff;
}

.card-content h3{
    font-size:28px;
    margin-bottom:15px;
    font-weight:700;
}

.card-content p{
    line-height:1.8;
    color:rgba(255,255,255,0.95);
}

/* HOVER */

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

/* opacity menyesuaikan saat hover */

.premium-card:hover .card-overlay{
    background:rgba(249,150,30,0.45);
}

/* RESPONSIVE */

@media(max-width:768px){

    .premium-card{
        width:100%;
    }

}

/* ================= CONSULTANT ================= */

.section-subtitle{
  display:inline-block;
  background:#fff7ed;
  color:#f9961e;
  padding:8px 22px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  text-transform:uppercase;
}

#konsultan .section-title{
  font-size:42px;
  font-weight:700;
  color:#111;
  margin-top:20px;
}

@media(max-width:768px){

  #konsultan .section-title{
    font-size:32px;
  }

}

.consultant-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:35px;

  margin-top:60px;
}

/* CARD */

.consultant-card{

  background:#fff;

  border-radius:34px;

  overflow:hidden;

  text-align:center;

  padding:40px 30px;

  border:
  1px solid rgba(249,115,22,.08);

  box-shadow:
  0 18px 45px rgba(0,0,0,.06);

  transition:.4s ease;
}

.consultant-card:hover{

  transform:translateY(-10px);

  box-shadow:
  0 25px 60px rgba(249,115,22,.14);
}

/* IMAGE WRAP */

.consultant-image{

  width:240px;
  height:240px;

  margin:auto;

  border-radius:50%;

  overflow:hidden;

  position:relative;

  background:
  linear-gradient(
  135deg,
  #fff7ed,
  #ffedd5);

  border:8px solid #fff;

  box-shadow:
  0 15px 35px rgba(249,115,22,.12);
}

/* FOTO */

.consultant-image img{

  width:100%;
  height:100%;

  object-fit:cover;

  object-position:top center;

  display:block;

  transition:.4s ease;
}

.consultant-card:hover .consultant-image img{

  transform:scale(1.06);
}

/* CONTENT */

.consultant-content{

  margin-top:28px;
}

/* NAMA */

.consultant-content h3{

  font-size:18px;

  line-height:1.8;

  color:#7c2d12;

  font-weight:700;

  background:
  linear-gradient(
  135deg,
  #fff7ed,
  #ffedd5);

  padding:20px;

  border-radius:22px;

  border:
  1px solid rgba(249,115,22,.08);

  min-height:120px;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* RESPONSIVE */

@media(max-width:991px){

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

}

@media(max-width:768px){

  .consultant-image{

    width:200px;
    height:200px;
  }

  .consultant-content h3{

    font-size:16px;

    min-height:auto;
  }

}

/* =====================================================
CTA + FORM
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
}

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

/* SECTION */

.cta-section{
    background:linear-gradient(135deg,#f9961e,#c22213);
    color:#fff;
    border-radius:40px;
    padding:70px;
    position:relative;
    overflow:hidden;
}

/* GRID */

.cta-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

/* LEFT CONTENT */

.mini-title{
    display:inline-block;
    background:rgba(255,255,255,0.18);
    padding:10px 18px;
    border-radius:999px;
    margin-bottom:25px;
    font-size:14px;
    backdrop-filter:blur(10px);
}

.cta-content h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
}

.cta-content p{
    color:#f3f3f3;
    line-height:1.8;
    margin-bottom:35px;
}

/* BUTTON */

.btn-primary{
    display:inline-block;
    padding:16px 30px;
    background:#fff;
    color:#c22213;
    text-decoration:none;
    border-radius:14px;
    font-weight:600;
    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

/* FORM */

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:28px;
    box-shadow:0 15px 40px rgba(0,0,0,0.12);
}

.input-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px 20px;
    border:none;
    background:#f5f7fb;
    border-radius:14px;
    font-size:15px;
    transition:0.3s;
    outline:none;
}

.contact-form input:focus,
.contact-form textarea:focus{
    background:#fff;
    border:2px solid #f9961e;
    box-shadow:0 0 0 4px rgba(249,150,30,0.15);
}

.contact-form textarea{
    height:140px;
    resize:none;
}

/* BUTTON */

.contact-form button{
    width:100%;
    padding:18px;
    border:none;
    background:linear-gradient(135deg,#f9961e,#c22213);
    color:#fff;
    border-radius:14px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(194,34,19,0.25);
}

/* SUCCESS MESSAGE */

.success-message{
    display:none;
    margin-top:20px;
    padding:14px;
    background:#e8fff1;
    color:#1c7c45;
    border-radius:12px;
    text-align:center;
    font-weight:600;
}

/* RESPONSIVE */

@media(max-width:900px){

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

    .cta-content h2{
        font-size:38px;
    }

}

@media(max-width:768px){

    .cta-section{
        padding:40px 25px;
        border-radius:25px;
    }

    .cta-content h2{
        font-size:32px;
    }

}

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

.premium-footer{
    position:relative;
    overflow:hidden;

    padding:90px 0 30px;

    /* BACKGROUND IMAGE */
    background:url('assets/images/kota-bekasi.jpg');
    background-size:cover;
    background-position:center;
}


.footer-overlay{
    position:absolute;
    inset:0;

    background:linear-gradient(
        180deg,

        /* langit atas */
        rgba(22,27,48,0.60) 0%,

        /* ungu senja */
        rgba(58,43,74,0.70) 25%,

        /* merah sunset */
        rgba(124,63,88,0.65) 50%,

        /* orange sunset */
        rgba(214,109,82,0.65) 75%,

        /* golden sunset */
        rgba(255,170,110,0.60) 100%
    );

    backdrop-filter:blur(4px);

    z-index:1;
}

/* =====================================================
CARD NUANCE
===================================================== */

.footer-location{
    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.10);

    backdrop-filter:blur(16px);

    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.footer-location:hover{
    background:rgba(255,255,255,0.12);

    box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

/* =====================================================
TEXT NUANCE
===================================================== */

.footer-logo span{
    color:rgba(255,235,220,0.82);
}

.footer-description,
.footer-location p,
.footer-contact a,
.footer-bottom{
    color:rgba(255,245,240,0.88);
}


.premium-footer .container{
    position:relative;
    z-index:2;
}


.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:40px;
    align-items:flex-start;
}


.footer-brand{
    padding-right:20px;
}

/* LOGO */

.footer-logo{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:30px;
}

.footer-logo img{
    width:70px;
    height:70px;
    object-fit:contain;

    background:#fff;
    padding:10px;
    border-radius:18px;
}

.footer-logo h2{
    color:#fff;
    font-size:34px;
    margin-bottom:6px;
    font-weight:800;
}

.footer-logo span{
    color:rgba(255,255,255,0.75);
    font-size:14px;
    letter-spacing:0.5px;
}

/* DESCRIPTION */

.footer-description{
    color:rgba(255,255,255,0.86);
    line-height:1.9;
    margin-bottom:35px;
    font-size:15px;
}

/* CONTACT */

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.footer-contact a{
    color:rgba(255,255,255,0.9);
    text-decoration:none;
    transition:0.3s;
    font-size:15px;
}

.footer-contact a:hover{
    color:#fff;
    transform:translateX(5px);
}

/* =====================================================
LOCATION
===================================================== */

.footer-location{
    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.08);

    padding:28px;

    border-radius:28px;

    backdrop-filter:blur(12px);

    transition:0.4s;
}

.footer-location:hover{
    transform:translateY(-8px);

    background:rgba(255,255,255,0.08);
}

/* TITLE */

.footer-location h3{
    color:#fff;
    font-size:24px;
    margin-bottom:18px;
}

/* TEXT */

.footer-location p{
    color:rgba(255,255,255,0.82);
    line-height:1.8;
    margin-bottom:22px;
    font-size:14px;
}

/* MAP */

.footer-location iframe{
    width:100%;
    height:220px;

    border:none;
    border-radius:20px;

    box-shadow:0 12px 30px rgba(0,0,0,0.2);
}

/* =====================================================
BOTTOM
===================================================== */

.footer-bottom{
    margin-top:70px;

    border-top:1px solid rgba(255,255,255,0.1);

    padding-top:30px;

    text-align:center;

    color:rgba(255,255,255,0.75);

    font-size:14px;
}

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

@media(max-width:1100px){

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

}

@media(max-width:768px){

    .premium-footer{
        padding:70px 0 30px;
    }

    .footer-logo{
        align-items:flex-start;
    }

    .footer-logo h2{
        font-size:28px;
    }

    .footer-location iframe{
        height:250px;
    }

}

/* =====================================================
FLOATING WHATSAPP
PREMIUM MINIMAL
===================================================== */

.wa-floating{
    position:fixed;

    right:25px;
    bottom:25px;

    z-index:9999;

    display:flex;
    align-items:center;
    gap:15px;

    padding:14px 18px;

    border-radius:24px;

    text-decoration:none;

    /* elegant dark glass */
    background:rgba(0,0,8,0.8);

    border:1px solid rgba(255,255,255,0.08);

    backdrop-filter:blur(14px);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.18);

    transition:0.4s ease;
}

/* HOVER */

.wa-floating:hover{
    transform:translateY(-6px);

    background:rgba(28,28,38,0.95);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.0);
}

/* ICON BOX */

.wa-icon{
    width:52px;
    height:52px;

    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        145deg,
        #f7401b,
        #f5e107
    );

    
}

/* SVG */

.wa-icon svg{
    width:28px;
    height:28px;

    fill:#fff;
}

/* TEXT */

.wa-text{
    display:flex;
    flex-direction:column;
}

.wa-text small{
    color:rgba(255,255,255,0.65);
    font-size:12px;
    margin-bottom:2px;
}

.wa-text strong{
    color:#fff;
    font-size:15px;
    font-weight:600;
}

/* MOBILE */

@media(max-width:768px){

    .wa-floating{
        right:18px;
        bottom:18px;

        padding:12px;
        border-radius:22px;
    }

    .wa-text{
        display:none;
    }

}

/* =====================================================
PREMIUM ANIMATIONS
===================================================== */

/* NAVBAR SLIDE IN */
.navbar{
    animation:navSlide 0.7s cubic-bezier(0.22,1,0.36,1) both;
}

@keyframes navSlide{
    from{
        transform:translateY(-100%);
        opacity:0;
    }
    to{
        transform:none;
        opacity:1;
    }
}

/* HERO ENTRANCE */
.js .hero-slide.active h1,
.js .hero-slide.active p,
.js .hero-slide.active .btn-primary{
    opacity:0;
    animation:heroFadeUp 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}

.js .hero-slide.active h1{
    animation-delay:0.15s;
}

.js .hero-slide.active p{
    animation-delay:0.4s;
}

.js .hero-slide.active .btn-primary{
    animation-delay:0.65s;
}

/* HERO SLIDER */
.hero-slider{
    position:relative;
    display:grid;
}

.hero-slide{
    grid-area:1/1;
    opacity:0;
    visibility:hidden;
    transform:translateY(24px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease,
        visibility 0.8s;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    transform:none;
}

/* DOTS */
.hero-dots{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:36px;
}

.hero-dot{
    width:12px;
    height:12px;
    border-radius:999px;
    background:rgba(255,255,255,0.35);
    cursor:pointer;
    transition:0.4s ease;
}

.hero-dot:hover{
    background:rgba(255,255,255,0.6);
}

.hero-dot.active{
    width:38px;
    background:linear-gradient(90deg,#f9961e,#c22213);
}

@keyframes heroFadeUp{
    from{
        opacity:0;
        transform:translateY(42px);
    }
    to{
        opacity:1;
        transform:none;
    }
}

/* SCROLL REVEAL */
.js .reveal,
.js .reveal-left,
.js .reveal-right,
.js .reveal-zoom{
    opacity:0;
    transition:
        opacity 0.8s cubic-bezier(0.22,1,0.36,1),
        transform 0.8s cubic-bezier(0.22,1,0.36,1);
    transition-delay:var(--reveal-delay,0s);
}

.reveal{
    transform:translateY(36px);
}

.reveal-left{
    transform:translateX(-46px);
}

.reveal-right{
    transform:translateX(46px);
}

.reveal-zoom{
    transform:scale(0.86);
}

.revealed.reveal,
.revealed.reveal-left,
.revealed.reveal-right,
.revealed.reveal-zoom{
    opacity:1;
    transform:none;
}

/* STAGGER */
.reveal-grid > :nth-child(1){ --reveal-delay:0s; }
.reveal-grid > :nth-child(2){ --reveal-delay:0.12s; }
.reveal-grid > :nth-child(3){ --reveal-delay:0.24s; }
.reveal-grid > :nth-child(4){ --reveal-delay:0.36s; }
.reveal-grid > :nth-child(5){ --reveal-delay:0.48s; }
.reveal-grid > :nth-child(6){ --reveal-delay:0.6s; }
.reveal-grid > :nth-child(7){ --reveal-delay:0.72s; }
.reveal-grid > :nth-child(8){ --reveal-delay:0.84s; }

/* FLOATING WHATSAPP BOB */
.wa-floating{
    animation:waFloat 4s ease-in-out infinite;
}

.wa-floating:hover{
    animation-play-state:paused;
}

@keyframes waFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px);
    }
}

/* MARQUEE PAUSE ON HOVER */
.client-carousel:hover .client-track{
    animation-play-state:paused;
}

/* ANCHOR OFFSET UNTUK FIXED NAVBAR */
section[id]{
    scroll-margin-top:90px;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce){

    .js .reveal,
    .js .reveal-left,
    .js .reveal-right,
    .js .reveal-zoom{
        opacity:1 !important;
        transform:none !important;
        transition:none;
    }

    .js .hero-slide.active h1,
    .js .hero-slide.active p,
    .js .hero-slide.active .btn-primary,
    .wa-floating,
    .navbar{
        animation:none !important;
        opacity:1;
        transform:none;
    }

    .hero-slide{
        transition:none;
    }

    .hero::after{
        animation:none;
    }

}
