/*
Theme Name: CSJ Professional Website
Theme URI: https://example.com/
Author: CSJ
Description: Custom WordPress theme converted from CSJ HTML website files.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: csj-professional
*/

/* ===== HERO EXTRA SECTIONS ===== */

.hero-stats-section{
    background:#fbfaf6;
    padding:0 0 30px;
}

.hero-stats{
    width:min(1200px, calc(100% - 40px));
    margin:-85px auto 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    position:relative;
    z-index:20;
}

.stat-card{
    background:#fff;
    min-height:140px;
    padding:22px 18px;
    border-radius:22px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.10);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
}

.stat-card h3{
    font-size:38px;
    line-height:1;
    color:#0f6e56;
    margin:0 0 16px;
    font-weight:1000;
}

.stat-card p{
    margin:0;
    font-size:15px;
    font-weight:800;
    color:#18312b;
}

/* ===== SERVICE PREVIEW ===== */

.services-preview{
    background:#fbfaf6;
    padding:34px 0 20px;
}

.service-grid{
    width:min(1200px, calc(100% - 40px));
    margin:0 auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

.service-card{
    background:#fff;
    min-height:130px;
    padding:24px 22px;
    border-radius:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.service-card h4{
    margin:0 0 14px;
    font-size:20px;
    font-weight:1000;
    color:#04352d;
}

.service-card p{
    margin:0;
    font-size:15px;
    font-weight:700;
    color:#18312b;
}

/* ===== COUNTRY FLAGS ===== */

.country-section{
    background:#fbfaf6;
	padding:140px 0 90px;
}

.country-flags{
    width:min(1100px, calc(100% - 40px));
    margin:0 auto;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:28px;
    flex-wrap:wrap;
}

.country-flags img{
    width:52px;
    height:52px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 8px 18px rgba(0,0,0,.12);
}

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

@media(max-width:900px){
    .hero-stats,
    .service-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-stats{
        margin-top:-60px;
    }
}

@media(max-width:560px){
    .hero-stats,
    .service-grid{
        grid-template-columns:1fr;
    }

    .stat-card,
    .service-card{
        min-height:110px;
    }

    .country-flags img{
        width:44px;
        height:44px;
    }
}
.hero{
    position:relative;
    overflow:visible;
	background:#01453c;
	min-height:700px !important;
    padding:60px 0 80px !important;
}

.hero-summary-section{
    position:absolute;
    left:0;
    right:0;
    bottom:-100px;
    z-index:100;
    background:transparent;
}

.hero-summary-wrap{
    display:grid;
    grid-template-columns:1fr 1.05fr;
    gap:24px;
    width:95%;
    max-width:1600px;
    margin:0 auto;
    position:relative;
    z-index:101;
}
.summary-panel{
  border-radius:24px;
  min-height:140px;
  box-shadow:0 22px 55px rgba(0,0,0,.16);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  overflow:hidden;
}

.stats-panel{
  background:#fff;
}

.service-panel{
    background:linear-gradient(
      135deg,
      #04352d 0%,
      #0b5b4d 50%,
      #0f7c6b 100%
    );
}

.summary-item{
  padding:24px 18px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-right:1px solid rgba(4,53,45,.10);
}

.summary-item:last-child{
  border-right:0;
}

.service-panel .summary-item{
  border-right:1px solid rgba(255,255,255,.18);
}

.summary-icon{
  font-size:30px;
  line-height:1;
  margin-bottom:12px;
}

.summary-icon.gold{
  color:#f6c34a;
}

.summary-item strong{
  font-size:34px;
  line-height:1;
  color:#0f6e56;
  font-weight:1000;
  margin-bottom:10px;
}

.service-panel .summary-item strong{
  color:#fff;
  font-size:12px;
  margin-bottom:14px;
}

.summary-item span{
  font-size:14px;
  font-weight:900;
  color:#18312b;
  line-height:1.6;
}

.summary-item small{
  margin-top:8px;
  font-size:11px;
  font-weight:700;
  color:#51645f;
  line-height:1.5;
}

.service-panel .summary-item span{
  color:#fff;
  font-size:11px;
  line-height:1.6;
  font-weight:700;
}

@media(max-width:1000px){
  .hero-summary-wrap{
    grid-template-columns:1fr;
  }
}

@media(max-width:640px){
  .summary-panel{
    grid-template-columns:repeat(2,1fr);
  }
}
.country-flags{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:28px;
  flex-wrap:wrap;
  margin-top:45px;
  margin-bottom:70px;
}

.flag-item{
  text-align:center;
  font-size:13px;
  font-weight:800;
  color:#18312b;
}

.flag-item img{
  width:46px;
  height:46px;
  border-radius:12px;
  object-fit:cover;
  display:block;
  margin:0 auto 8px;
  box-shadow:0 8px 18px rgba(0,0,0,.14);
}
.country-flags img{
    width:60px !important;
    height:40px !important;
    display:block !important;
    opacity:1 !important;
    visibility:visible !important;
    object-fit:cover;
    border:1px solid #ddd;
}
.summary-icon.gold{
    color:#f5c242;
    font-size:42px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:20px;
}

.summary-icon.gold i{
    line-height:1;
}
.summary-icon.gold svg{
  width:44px;
  height:44px;
  fill:none;
  stroke:#f5c242;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}


.summary-icon.gold i{
  color:#f5c242 !important;
  font-size:42px !important;
  display:block !important;
}
.summary-icon.gold i{
    color:#f5c242 !important;
    font-size:44px !important;
    font-weight:400 !important;
}

.summary-icon.gold i:hover{
    color:#ffd76a;
}
.service-panel{
  display:grid !important;
  grid-template-columns:repeat(4, 1fr) !important;
  align-items:stretch !important;
}

.service-panel .summary-item{
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
  align-items:center !important;
  text-align:center !important;
  padding:26px 18px !important;
  min-width:0 !important;
}

.summary-icon.gold{
  height:52px !important;
  margin-bottom:14px !important;
  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
}

.summary-icon.gold svg,
.summary-icon.gold i{
  width:44px !important;
  height:44px !important;
  font-size:42px !important;
  color:#f5c242 !important;
  stroke:#f5c242 !important;
}

.service-panel .summary-item strong{
  display:block !important;
  margin:0 0 10px !important;
  font-size:17px !important;
  line-height:1.4 !important;
}

.service-panel .summary-item span{
  display:block !important;
  font-size:12px !important;
  line-height:1.7 !important;
}
/* SERVICE PANEL DESIGN */

.service-panel{
    background: linear-gradient(
        90deg,
        #063b34 0%,
        #0b5c4f 50%,
        #127a69 100%
    ) !important;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 28px;
}

.service-item{
    border-right:1px solid rgba(255,255,255,.12);
}

.service-item:last-child{
    border-right:none;
}
.summary-icon img{
    width:44px;
    height:44px;
    object-fit:contain;
    display:block;
    margin:auto;
}
.service-item{
    border-right:1px solid rgba(255,255,255,.12);
}

.service-item:last-child{
    border-right:none;
}


.hero-bg-image{
    position:absolute;
    top:0;
    right:0;

    width:100%;
    height:100%;

    background-image:url('https://shikata.superhotelclean.co.jp/CSJ/wp-content/themes/csj-wp-theme/assets/img/csj.png');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    z-index:1;
}

.hero-overlay{
    position:absolute;
    inset:0;
    z-index:2;
    background:transparent;
}
.hero::before{
    content:'';
    position:absolute;

    left:-180px;
    bottom:-180px;

    width:520px;
    height:520px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

    z-index:1;
}

.hero-grid,
.hero-side-card{
    position:relative;
    z-index:3;
}

/*.hero-content-box{
    max-width:980px !important;
    width:980px !important;
}*/
.top-notice,
.site-notice,
.header-notice,
.announcement-bar{
    display:none !important;
}
header,
.main-header,
.site-header,
.header-wrap{
    background:#e8efe9 !important;

    border-bottom:1px solid rgba(4,53,45,.08);

    box-shadow:0 4px 20px rgba(0,0,0,.04);
}
.header-nav a,
.site-nav a,
.global-nav a,
.nav-menu a{
    position:relative;
    padding:8px 18px !important;
    border-radius:999px;
    transition:.25s ease;
}

.header-nav a:not(:last-child)::after,
.site-nav a:not(:last-child)::after,
.global-nav a:not(:last-child)::after,
.nav-menu a:not(:last-child)::after{
    content:"";
    position:absolute;
    right:-4px;
    top:50%;
    width:5px;
    height:5px;
    background:#c8a24a;
    border-radius:50%;
    transform:translateY(-50%);
    opacity:.75;
}

.header-nav a:hover,
.site-nav a:hover,
.global-nav a:hover,
.nav-menu a:hover{
    background:#ffffff;
    color:#01453c !important;
    box-shadow:0 8px 22px rgba(4,53,45,.10);
}
.nav{

    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:4px;
}

.nav-sep{


    color:#caa74a;
    font-size:18px;
    margin:0;
    padding:0 2px;

}
.header-inner{
    display:flex;
    align-items:center;
    max-width:1400px;
    margin:0 auto;
}

.nav{
    margin-left:auto;
}

.header-btn{
    margin-left:20px;
}
.hero-badge{
    display:inline-block;
    padding:14px 28px;
    border:1px solid rgba(217,165,45,.6);
    border-radius:999px;
    color:#f4d27a;
    font-size:15px;
    font-weight:700;
    background:rgba(255,255,255,.04);
    margin-bottom:25px;
	margin-top:-30px !important;
}

.hero-message{
    background:rgba(255,255,255,.06);
    border-left:4px solid #d9a52d;
    padding:22px 26px;
    border-radius:18px;
    color:#fff;
    font-size:18px;
    line-height:1.9;
    max-width:760px;
    margin-bottom:35px;
    backdrop-filter:blur(8px);
}
.hero-content-box{
    max-width:700px !important;
    margin-left:0px !important;
	transform: translateY(40px) !important;
}

.hero-title{
    font-size:30px !important;
    line-height:1.1 !important;
    margin-bottom:10px !important;
}

.hero-subtitle{
    font-size:30px !important;
    line-height:1.1 !important;
	color:#d9a52d !important;
    margin-bottom:20px !important;

}

.hero-desc{
    font-size:12px !important;
    line-height:1.8 !important;
    max-width:620px !important;
}

.hero-title .line,
.hero-subtitle .line{
    white-space:nowrap !important;
}
.hero-badge{
    position:relative;
    top:-30px;
}
.hero-actions{
    display:flex;
    gap:14px;
    margin-top:24px;
    flex-wrap:wrap;
}

/* Gold Button */
.btn-gold{
    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 20px;

    background:linear-gradient(
        135deg,
        #d89a19,
        #f2b52d
    );

    color:#fff;
    border-radius:38px;
    text-decoration:none;

    font-size:14px;
    font-weight:700;

    width:auto;
    flex:none;

    box-shadow:0 8px 20px rgba(216,154,25,.20);

    transition:.3s;
}

.btn-gold:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 24px rgba(216,154,25,.30);
}

/* Outline Button */
.btn-outline-dark{
    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 20px;

    border:1px solid rgba(255,255,255,.65);
    border-radius:38px;

    color:#fff;
    text-decoration:none;

    font-size:14px;
    font-weight:700;

    width:auto;
    flex:none;

    background:rgba(0,0,0,.18);
    backdrop-filter:blur(8px);

    transition:.3s;
}

.btn-outline-dark:hover{
    background:rgba(255,255,255,.08);
    transform:translateY(-2px);
}

/* Left Icons */
.btn-gold .fa-users,
.btn-outline-dark .fa-file-alt{
    font-size:15px;
}

/* Right Arrow */
.btn-gold .fa-chevron-right,
.btn-outline-dark .fa-chevron-right{
    font-size:10px;
    margin-left:2px;
}
.feature-icon{
    width:50px;
    height:50px;

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

    border:2px solid #d6a539;
    border-radius:50%;

    color:#d6a539;
    font-size:28px;

    background:rgba(0,0,0,.12);
    backdrop-filter:blur(8px);

    position:relative;
}

.feature-icon i{
    line-height:1;
}

/* Star */
.sparkle{
    position:absolute;

    top:-6px;      /* အပေါ်နား */
    right:-8px;    /* အဝိုင်းကို ကပ် */

    font-size:27px;

    color:#d6a539 !important;

    line-height:1;
    z-index:10;
}
.feature-card{
    text-align:center;

    display:flex;
    flex-direction:column;
    align-items:center;
}

.feature-card h3{
    min-height:80px;   /* ခေါင်းစဉ်အမြင့် တူအောင် */
}

.feature-card p{
    min-height:120px;  /* စာပိုဒ်အမြင့် တူအောင် */
}
.hero-side-card{
    position:fixed !important;
     top:107px !important;
    right:0!important;


    width:62px;
    height:248px;

    background:#006b57;

    border-radius:40px;

    padding:5px;

    box-shadow:0 10px 25px rgba(0,0,0,.18);

    z-index:20;
}

.side-card-inner{
    width:100%;
    height:100%;

    background:#fff;

    border-radius:35px;

    border:1px solid #d6a539;

    display:flex;
    flex-direction:column;
    align-items:center;

    padding:18px 0 0;

    overflow:hidden;
}

.side-main-text{
    display:flex;
    flex-direction:column;
    align-items:center;

    gap:8px;

    color:#006b57;

    font-size:14px;
    font-weight:900;

    line-height:1;
}

.side-divider{
    width:40px;
    height:14px;

    margin:14px 0;

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

.side-divider::before,
.side-divider::after{
    content:"";

    width:12px;
    height:1px;

    background:#d6a539;
}

.side-divider span{
    width:7px;
    height:7px;

    background:#d6a539;

    transform:rotate(45deg);

    margin:0 5px;
}

.side-people-icon{
    margin-top:auto;

    margin-bottom:10px;

    color:rgba(214,165,57,.7);

    font-size:20px;
}

.side-bottom{
    width:100%;

    background:#006b57;

    text-align:center;

    padding:10px 2px 12px;

    border-radius:0 0 30px 30px;
}

.side-bottom strong{
    display:block;

    color:#d6a539;

    font-size:10px;
    font-weight:800;

    letter-spacing:1px;
}

.side-bottom small{
    display:none;
}
.country-section{
  background:#fbfaf6;
  padding:80px 0 80px;
  overflow:hidden;
  margin-top:0 !important;
  padding-top:0 !important;
}

.country-slider{
  width:100%;
  margin-top:20px;
  overflow:hidden;
  position:relative;
}

.country-track{
  display:flex;
  align-items:center;
  gap:55px;
  width:max-content;
  animation: flagsLeftToRight 28s linear infinite;
}

.flag-item{
  flex:0 0 auto;
  text-align:center;
  font-size:16px;
  font-weight:900;
  color:#07352e;
  white-space:nowrap;
}

.flag-item img{
  width:80px !important;
  height:52px !important;
  border-radius:12px;
  object-fit:cover;
  display:block !important;
  margin:0 auto 12px;
  box-shadow:0 10px 24px rgba(0,0,0,.16);
  border:1px solid rgba(0,0,0,.08);
}

.country-track:hover{
  animation-play-state:paused;
}

@keyframes flagsLeftToRight{
  0%{
    transform:translateX(-50%);
  }
  100%{
    transform:translateX(0);
  }
}
/* MOBILE HEADER FORCE FIX */
@media (max-width:768px){

  header,
  .site-header,
  .main-header,
  .header-wrap{
    height:auto !important;
    min-height:92px !important;
    background:#e8efe9 !important;
    overflow:hidden !important;
  }

  .header-inner{
    display:block !important;
    padding:14px 18px !important;
    max-width:100% !important;
  }

  /* logo / site title ကို ပြန်ပေါ်စေ */
  .logo,
  .site-logo,
  .header-logo,
  .brand,
  .site-branding{
    display:block !important;
    width:100% !important;
    max-width:260px !important;
    text-align:left !important;
  }

  .logo *,
  .site-logo *,
  .header-logo *,
  .brand *,
  .site-branding *{
    white-space:normal !important;
    word-break:keep-all !important;
  }

  /* menu တွေကို mobile မှာ အကုန်ဖျောက် */
  nav,
  .nav,
  .header-nav,
  .site-nav,
  .global-nav,
  .nav-menu,
  .menu,
  .header-btn{
    display:none !important;
  }

}
/* =========================
   MOBILE = DESKTOP VIEW FIX
   Phone မှာ Desktop ပုံစံအတိုင်းပြရန်
========================= */
@media (max-width: 768px){

  html,
  body{
    width:100% !important;
    overflow-x:auto !important;
  }

  body{
    min-width:1200px !important;
  }

  .site-header,
  .main-header,
  header,
  .header-wrap{
    min-width:1200px !important;
  }

  .header-inner{
    max-width:1400px !important;
    display:flex !important;
    align-items:center !important;
    padding:0 40px !important;
  }

  .nav,
  .header-nav,
  .site-nav,
  .global-nav,
  .nav-menu,
  .header-btn{
    display:flex !important;
  }

  .hero{
    min-width:1200px !important;
    min-height:620px !important;
    padding-bottom:180px !important;
    overflow:visible !important;
  }

  .hero-bg-image{
    height:100% !important;
    background-size:cover !important;
    background-position:center !important;
  }

  .hero-grid{
    padding:0 !important;
  }

  .hero-content-box{
    max-width:700px !important;
    margin-left:-100px !important;
    transform:translateY(40px) !important;
  }

  .hero-title{
    font-size:30px !important;
    line-height:1.1 !important;
  }

  .hero-subtitle{
    font-size:36px !important;
    line-height:1.1 !important;
  }

  .hero-title .line,
  .hero-subtitle .line{
    white-space:nowrap !important;
  }

  .hero-actions{
    display:flex !important;
    flex-direction:row !important;
  }

  .btn-gold,
  .btn-outline-dark{
    width:auto !important;
  }

  .hero-summary-section{
    position:absolute !important;
    left:0 !important;
    right:0 !important;
    bottom:-100px !important;
    margin-top:0 !important;
  }

  .hero-summary-wrap{
    width:95% !important;
    max-width:1600px !important;
    display:grid !important;
    grid-template-columns:1fr 1.05fr !important;
    gap:24px !important;
  }

  .summary-panel{
    display:grid !important;
    grid-template-columns:repeat(4,1fr) !important;
  }

  .service-panel{
    grid-template-columns:repeat(4,1fr) !important;
  }

  .hero-side-card{
    display:block !important;
    position:fixed !important;
    top:107px !important;
    right:0 !important;
  }

  .country-section{
    min-width:1200px !important;
    padding:140px 0 90px !important;
  }
}
.flow-section{
  padding:30px 20px;
  background:#f7f4ee;
  text-align:center;
}

.flow-section h2{
  margin-top:110px;
  font-size:30px;
  font-weight:800;
  color:#12332f;
  margin-bottom:25px;
}

.flow-wrap{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:35px;
}

.flow-group{
  position:relative;
  display:flex;
  align-items:flex-start;
  gap:26px;
  padding-top:55px;
}

.flow-label{
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  color:#fff;
  font-size:14px;
  font-weight:700;
  padding:9px 26px;
  border-radius:999px;
  white-space:nowrap;
}

.problem .flow-label{
  background:#8b2525;
}

.solution .flow-label{
  background:#163b3a;
}

.flow-item{
  width:115px;
  position:relative;
}

.flow-item:not(:last-child)::after{
  content:"";
  position:absolute;
  top:43px;
  right:-25px;
  width:25px;
  height:1px;
  background:#cfc8bd;
}

.circle{
  width:86px;
  height:86px;
  margin:0 auto 14px;
  border-radius:50%;
  background:#fff;
  border:1px solid #ddd5ca;
  box-shadow:0 8px 20px rgba(0,0,0,.07);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:32px;
}

.problem .circle{
  color:#8b2525;
}

.solution .circle{
  color:#163b3a;
}

.flow-item h3{
  font-size:17px;
  color:#8b2525;
  margin:0 0 8px;
  font-weight:800;
}

.solution .flow-item h3{
  color:#163b3a;
}

.flow-item p{
  font-size:12px;
  line-height:1.6;
  color:#555;
  margin:0;
}

.flow-arrow{
  font-size:42px;
  color:#333;
  padding-top:45px;
}

/* mobile */
@media(max-width:900px){
  .flow-wrap{
    flex-direction:column;
  }

  .flow-group{
    flex-wrap:wrap;
    justify-content:center;
  }

  .flow-arrow{
    transform:rotate(90deg);
    padding-top:0;
  }
}
.services-brochure{
	
    margin-top:0 !important;
  padding:1px 40px;
  background:#f7f4ee;
}

.services-brochure h2{
  text-align:center;
  font-size:30px;
  color:#12332f;
  margin-bottom:45px;
}

.service-list{
  max-width:1200px;
  margin:0 auto;
}

.service-line{
  display:grid;
  grid-template-columns:420px 1fr 150px;
  align-items:center;
  gap:35px;
  margin-bottom:45px;
}

.service-line.reverse{
  grid-template-columns:1fr 150px 420px;
}

.service-line img{
  width:420px;
  height:125px;
  object-fit:cover;
  border-radius:8px;
}

.service-info{
  display:grid;
  grid-template-columns:80px 1fr;
  align-items:center;
  gap:20px;
}

.service-info span{
  font-family:Georgia, serif;
  font-size:54px;
  font-style:italic;
  color:#12332f;
}

.service-info h3{
  font-size:22px;
  color:#12332f;
  margin:0 0 -30px;
  white-space:nowrap;
}

.service-info p{
  grid-column:2;
  font-size:13px;
  line-height:1.8;
  margin-top:-20px;
  color:#333;
}

.service-line a{
  color:#12332f;
  text-decoration:none;
  font-weight:700;
  white-space:nowrap;
}

@media(max-width:900px){
  .service-line,
  .service-line.reverse{
    grid-template-columns:1fr;
  }

  .service-line img{
    width:100%;
    height:180px;
  }

  .service-info{
    grid-template-columns:70px 1fr;
  }

  .service-info h3{
    white-space:normal;
  }
}
.csj-numbers{
    background:#f8f6f1;
    padding:100px 20px 120px;
    position:relative;
}

/* Title area */
.section-heading{
    text-align:center;
    max-width:900px;
    margin:-40px auto 40px auto;
}

.section-label{
    display:block;
    text-align:center;
    color:#c8a24a;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:15px;
}

.section-heading h2{
    font-size:44px;
    font-weight:500;
    letter-spacing:-0.5px;
    line-height:1.3;
}

.section-heading p{
    text-align:center;
    max-width:720px;
    margin:0 auto;
    color:#5f666b;
    font-size:18px;
    line-height:1.8;
}

/* Cards */
.why-grid{
    max-width:1080px;
    margin:50px auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.why-card{
    background:#fff;
    border-radius:24px;
    padding:32px;
    min-height:300px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
    transition:.3s;
}

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

.why-number{
    position:absolute;
    top:0;
    left:0;
    width:70px;
    height:70px;
    background:linear-gradient(180deg,#0d7a63,#085648);
    color:#fff;
    font-size:22px;
    font-weight:700;
    border-radius:0 0 22px 0;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:3;
}

.why-icon{
    position:absolute;
    top:36px;
    right:42px;
    z-index:2;
    font-size:36px;
    color:#c8a24a;
}

.why-card::after{
    content:"";
    position:absolute;
    right:25px;
    top:20px;
    width:90px;
    height:90px;
    background:#f5f1e7;
    border-radius:50%;
    z-index:1;
}

.why-card h3{
    margin-top:80px;
    font-size:20px;
    line-height:1.55;
    color:#0d4f45;
    margin-bottom:18px;
    font-weight:700;
    position:relative;
    z-index:2;
}

.why-card p{
    font-size:15px;
    line-height:1.8;
    color:#5f666b;
    position:relative;
    z-index:2;
}

/* Button */
.strength-btn-area{
    text-align:center;
    margin-top:20px;
}

.strength-btn{
    display:inline-flex;
    align-items:center;
    gap:14px;
    background:#006b57;
    color:#fff;
    padding:18px 48px;
    border-radius:8px;
    font-weight:700;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.strength-btn:hover{
    background:#004f43;
}

/* Responsive */
@media(max-width:900px){
    .section-heading h2{
        font-size:36px;
    }

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

    .why-card{
        min-height:auto;
    }
}
.csj-team{
  background:#f7f4ee;
   padding:30px 20px 90px;
}

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

.team-intro .eyebrow{
  color:#00715f;
  font-weight:800;
  letter-spacing:5px;
  font-size:14px;
}

.team-intro h2{
  font-size:30px;
  line-height:1.6;
  color:#12332f;
  margin:18px 0;
}

.team-intro p{
  font-size:14px;
  line-height:2;
  color:#333;
}

.team-btn{
  display:inline-block;
  margin-top:26px;
  padding:14px 28px;
  border:1px solid #cfd5cc;
  border-radius:999px;
  color:#12332f;
  text-decoration:none;
  font-weight:700;
}

.team-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.team-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:14px;
}

.country{
  display:block;
  font-size:11px;
  color:#b78a2a;
  font-weight:800;
  margin-bottom:7px;
}

.team-card h3{
  font-size:18px;
  color:#12332f;
  margin:0 0 8px;
}

.team-card p{
  font-size:13px;
  color:#333;
  margin-bottom:14px;
}

.team-tags{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
}

.team-tags span{
  background:#eef2e9;
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  color:#12332f;
}

@media(max-width:900px){
  .team-layout{
    grid-template-columns:1fr;
  }

  .team-cards{
    grid-template-columns:1fr 1fr;
  }
}
/* ===============================
   PREMIUM CONTACT + FOOTER
================================ */

.premium-contact-footer{
  background:
    radial-gradient(circle at 88% 8%, rgba(214,163,58,.22), transparent 30%),
    linear-gradient(135deg,#061513 0%,#09221f 50%,#061513 100%);
  color:#fff;
  padding:90px 40px 35px;
  overflow:hidden;
}

.pcf-inner{
  max-width:1280px;
  margin:0 auto;
}

/* CONTACT CARD */
.pcf-contact-card{
  display:grid;
  grid-template-columns:320px 1fr;
  gap:50px;
  align-items:center;

  width:1000px;
  max-width:1000px;

  margin-left:auto;
  margin-right:0;

  transform:translateX(300px);

  padding:40px;
  border-radius:32px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.07),
      rgba(255,255,255,.03)
    );

  border:1px solid rgba(255,255,255,.12);

  box-shadow:0 30px 90px rgba(0,0,0,.35);
}
.pcf-eyebrow{
  display:block;
  color:#d6a33a;
  letter-spacing:8px;
  font-size:13px;
  font-weight:900;
  margin-bottom:24px;
}

.pcf-contact-text h2{
  font-size:38px;
  line-height:1.4;
  color:#fff;
  margin:0 0 24px;
}

.pcf-contact-text p{
  color:#cbd9d6;
  font-size:16px;
  line-height:2;
}

.pcf-points{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:32px;
}

.pcf-points span{
  padding:9px 16px;
  border-radius:999px;
  border:1px solid rgba(214,163,58,.45);
  color:#d6a33a;
  font-size:13px;
  font-weight:700;
}

/* FORM */
.pcf-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.pcf-form input,
.pcf-form textarea{
  width:100%;
  padding:18px 20px;
  border:none;
  border-radius:14px;
  background:#fff;
  font-size:15px;
  outline:none;
}

.pcf-form textarea{
  grid-column:1 / 3;
  height:135px;
  resize:none;
}

.pcf-form button{
  grid-column:1 / 3;
  padding:18px;
  border:none;
  border-radius:14px;
  background:linear-gradient(135deg,#d8ad4a,#b88724);
  color:#fff;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}

/* FOOTER */
.pcf-footer{
  margin-top:70px;
  padding-top:55px;
  border-top:1px solid rgba(255,255,255,.12);

  display:grid;
  grid-template-columns:1.25fr 2fr;
  gap:110px;
}

.pcf-logo{
  width:78px;
  height:78px;
  border-radius:22px;
  background:linear-gradient(135deg,#d8ad4a,#b88724);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:900;
  color:#fff;
  margin-bottom:32px;
  box-shadow:0 16px 38px rgba(214,163,58,.28);
}

.pcf-brand h3{
  font-size:38px;
  line-height:1.55;
  color:#fff;
  margin:0 0 28px;
}

.pcf-brand p{
  color:#8fb1b7;
  font-size:16px;
  line-height:2;
}

.pcf-menu{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:70px;
}

.pcf-menu h4{
  color:#d6a33a;
  letter-spacing:5px;
  font-size:14px;
  margin-bottom:28px;
}

.pcf-menu a{
  display:block;
  color:#b9ccd0;
  text-decoration:none;
  font-size:16px;
  margin-bottom:18px;
  line-height:1.7;
}

.pcf-menu a:hover{
  color:#d6a33a;
}

.pcf-menu strong{
  display:block;
  color:#fff;
  font-size:30px;
  line-height:1.35;
  margin-bottom:16px;
}

.pcf-menu p{
  color:#8fb1b7;
  margin-bottom:24px;
}

.pcf-contact-btn{
  display:inline-block !important;
  padding:14px 24px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  color:#fff !important;
}

/* BOTTOM */
.pcf-bottom{
  margin-top:60px;
  padding-top:26px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#789ca3;
  font-size:14px;
}

/* MOBILE */
@media(max-width:900px){
  .premium-contact-footer{
    padding:70px 20px 30px;
  }

  .pcf-contact-card,
  .pcf-footer,
  .pcf-menu{
    grid-template-columns:1fr;
  }

  .pcf-contact-card{
    padding:34px 24px;
    gap:36px;
  }

  .pcf-form{
    grid-template-columns:1fr;
  }

  .pcf-form textarea,
  .pcf-form button{
    grid-column:auto;
  }

  .pcf-contact-text h2{
    font-size:32px;
  }

  .pcf-brand h3{
    font-size:28px;
  }

  .pcf-bottom{
    flex-direction:column;
  }
}
/* ==========================
   PROCESS SECTION
========================== */

.csj-process{
    background:#f7f4ee;
    padding:0 20px 70px !important;
    margin-top:-120px !important;
}

.csj-process-inner{
    max-width:1200px;
    margin:0 auto;
}

.process-head{
    text-align:center;
    position:relative;
    top:-40px;
    margin-bottom:20px;
}

.process-head span{
    display:block;
    color:#00715f;
    font-weight:800;
    letter-spacing:6px;
    font-size:14px;
    margin-bottom:14px;
}

.process-head h2{
    font-size:36px;
    color:#12332f;
    margin-bottom:18px;
}

.process-head p{
    font-size:15px;
    line-height:2;
    color:#455;
    margin-bottom:0;
}
.process-flow{
    display:grid;
    grid-template-columns:1fr 55px 1fr 55px 1fr;
    grid-template-areas:
        "step1 arrow1 step2 arrow2 step3"
        "step6 arrow5 step5 arrow4 step4";
    gap:30px 18px;
    align-items:center;
	position:relative;
}

.down-arrow{
    font-size:60px;
    color:#c89b2d;
    text-align:center;
}

.process-card{
    background:#fff;
    border-radius:18px;
    padding:22px 24px;
    min-height:130px;
    display:flex;
    align-items:center;
    gap:18px;
    box-shadow:0 10px 28px rgba(0,0,0,.08);
    border:1px solid rgba(12,79,69,.08);
}

.step1{ grid-area:step1; }
.step2{ grid-area:step2; }
.step3{ grid-area:step3; }
.step4{ grid-area:step4; }
.step5{ grid-area:step5; }
.step6{ grid-area:step6; }

.arrow-1{ grid-area:arrow1; }
.arrow-2{ grid-area:arrow2; }
.arrow-4{ grid-area:arrow4; }
.arrow-5{ grid-area:arrow5; }

.down-arrow{
    display:block !important;
    position:absolute;

    top:43%;
    right:13%;

    transform:translateY(-50%);

    color:#c89d34;
    font-size:20px !important; /* သေးအောင် */
    line-height:1 !important;

    z-index:99;
}
.process-icon{
    width:82px;
    height:82px;
    min-width:82px;
    border-radius:50%;
    background:#f5f1e7;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c89d34;
    font-size:32px;
}

.process-text{
    position:relative;
}

.process-num{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#0d5f52;
    color:#fff;
    width:34px;
    height:34px;
    border-radius:50%;
    font-size:13px;
    font-weight:700;
    margin-right:8px;
}

.process-card h3{
    display:inline-block;
    color:#0c4f45;
    font-size:20px;
    margin:0 0 8px;
    font-weight:700;
}

.process-card p{
    color:#5f666b;
    font-size:14px;
    line-height:1.7;
    margin:0;
}

.flow-arrow{
    color:#c89d34;
    font-size:34px;
    font-weight:700;
    text-align:center;
}

/* smartphone */
@media(max-width:900px){
    .process-flow{
        display:block;
    }

    .process-card{
        margin-bottom:18px;
    }

    .flow-arrow{
        display:none;
    }

    .process-head h2{
        font-size:34px;
    }
}

.process-head p{
  font-size:15px;
  line-height:2;
  color:#455;
}

.process-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  position:relative;
}

.process-step{
  position:relative;
  background:#fff;
  padding:34px 28px;
  border-radius:20px;
  box-shadow:0 14px 35px rgba(0,0,0,.08);
  border:1px solid #e4ded3;
}

.process-step::after{
  content:"→";
  position:absolute;
  top:50%;
  right:-24px;
  transform:translateY(-50%);
  color:#b78a2a;
  font-size:26px;
  font-weight:800;
}

.process-step:nth-child(3)::after,
.process-step:nth-child(6)::after{
  display:none;
}

.step-num{
  display:inline-block;
  background:#12332f;
  color:#fff;
  padding:7px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
  letter-spacing:1px;
  margin-bottom:18px;
}

.process-step h3{
  font-size:22px;
  color:#12332f;
  margin-bottom:14px;
}

.process-step p{
  font-size:14px;
  line-height:1.9;
  color:#555;
}

/* mobile */
@media(max-width:900px){
  .process-steps{
    grid-template-columns:1fr;
  }

  .process-step::after{
    content:"↓";
    top:auto;
    right:50%;
    bottom:-28px;
    transform:translateX(50%);
  }

  .process-step:nth-child(3)::after{
    display:block;
  }

  .process-step:nth-child(6)::after{
    display:none;
  }
}

.strength-btn-area{
    width:100%;
    display:flex;
    justify-content:flex-end;
    margin-top:20px;
    padding-right:80px;
}

.strength-btn{
    display:inline-flex !important;
    width:auto !important;
    align-items:center;
    gap:8px;
    background:#0f4a42;
    color:#fff;
    padding:8px 14px;
    border-radius:4px;
    font-size:14px;
    font-weight:600;
    text-decoration:none;
}
.country-section{
    background:#f7f4ee !important;
    margin-bottom:0 !important;
    padding-bottom:20px !important;
}
.csj-problem-solution{
  padding:130px 20px 90px;
  background:#f7f4ee;
  text-align:center;
  overflow:hidden;
}

.csj-problem-solution h2{
  font-size:34px;
  color:#063b34;
  margin-bottom:55px;
  font-weight:900;
}

.csj-map{
  max-width:1200px;
  height:388px;
  margin:0 auto;
  position:relative;
}

.map-lines{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  z-index:1;
}

.map-lines path{
  fill:none;
  stroke:#c9c4b6;
  stroke-width:3.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.map-left,
.map-right{
  position:absolute;
  top:0;
  width:300px;
  display:flex;
  flex-direction:column;
  gap:28px;
  z-index:3;
}
.map-left{
    left:20px;
}

.map-right{
    right:20px;
}
.map-left{ left:0; }
.map-right{ right:0; }

.map-card{
  height:76px;
  border-radius:999px;
  background:#fff;
  display:flex;
  align-items:center;
  box-shadow:0 16px 38px rgba(0,0,0,.07);
  position:relative;
  overflow:visible;
}

.map-card strong{
  font-size:22px;
  font-weight:900;
  white-space:nowrap;
}

.map-card span{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:900;
  flex-shrink:0;
  box-shadow:0 8px 20px rgba(0,0,0,.08);
  z-index:5;
}

/* LEFT */
.map-card.problem{
  justify-content:flex-end;
  padding:8px 12px 8px 34px;
  border:2px solid rgba(180,35,24,.18);
}

.map-card.problem strong{
  color:#b42318;
  margin-right:22px;
}

.map-card.problem span{
  border:6px solid #b42318;
  color:#b42318;
}

/* RIGHT */
.map-card.solution{
  justify-content:flex-start;
  padding:8px 34px 8px 12px;
  border:2px solid rgba(0,152,121,.22);
}

.map-card.solution strong{
  color:#00483f;
  margin-left:22px;
}

.map-card.solution span{
  border:6px solid #009879;
  color:#009879;
}

/* CENTER */
.map-core{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle,#fff 55%,#f0faf7 100%);
  border:8px solid #009879;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  z-index:4;
  box-shadow:0 26px 60px rgba(0,152,121,.18);
}

.map-core strong{
  font-size:48px;
  color:#063b34;
  line-height:1;
}

.map-core small{
  margin-top:14px;
  font-size:13px;
  letter-spacing:5px;
  color:#009879;
  font-weight:900;
}

.core-line{
  width:120px;
  height:1px;
  background:#009879;
  margin:18px 0 10px;
  position:relative;
}

.core-line::after{
  content:"";
  width:8px;
  height:8px;
  background:#009879;
  border-radius:50%;
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
}

.map-core p{
  margin:0;
  font-size:15px;
  font-weight:800;
  letter-spacing:3px;
  color:#063b34;
}

@media(max-width:900px){
  .csj-map{
    height:auto;
    display:flex;
    flex-direction:column;
    gap:22px;
  }

  .map-lines{
    display:none;
  }

  .map-left,
  .map-right,
  .map-core{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    transform:none;
    width:100%;
  }

  .map-core{
    width:190px;
    height:190px;
    margin:10px auto;
    order:2;
  }

  .map-right{
    order:3;
  }
}
/* ==========================
   Contact Checkbox Section
========================== */

.pcf-checks{
  grid-column:1 / 3;
  margin-bottom:8px;
}

.pcf-checks h3{
  color:#fff;
  font-size:18px;
  font-weight:800;
  margin:0 0 16px;
}

.pcf-check-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.pcf-check-grid label{
  display:flex;
  align-items:center;

  background:#ffffff;
  color:#063b34;

  padding:16px 18px;
  border-radius:14px;

  font-size:14px;
  font-weight:700;

  cursor:pointer;
}

.pcf-check-grid label:hover{
  background:#f5f8f7;
}

.pcf-check-grid input{
  width:18px;
  height:18px;
  margin-right:10px;
}

/* Mobile */

@media(max-width:768px){

  .pcf-check-grid{
    grid-template-columns:1fr;
  }

}
.pcf-company-box{
  margin-top:35px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,.15);
}

.pcf-company-box h4{
  color:#d6a33a;
  font-size:13px;
  letter-spacing:3px;
  margin-bottom:15px;
}

.pcf-company-box p{
  color:#ffffff;
  font-size:14px;
  line-height:1.9;
  margin-bottom:18px;
}

.pcf-company-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.pcf-company-box li{
  color:#dbe8e4;
  font-size:13px;
  margin-bottom:10px;
}
.csj-contact-wrap{
    width:100%;
    display:grid;
    grid-template-columns:40% 60%;
    gap:28px;
    padding:70px 28px;
    background:#062b25;
    box-sizing:border-box;
    overflow:hidden;
}

.csj-contact-left{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px 46px;
    color:#fff;
}

.csj-left-col h3{
    font-size:26px;
    font-weight:800;
    margin:0 0 28px;
}

.csj-left-col h4{
    font-size:22px;
    font-weight:800;
    margin:0 0 20px;
    padding-bottom:14px;
    border-bottom:1px solid rgba(214,166,48,.55);
}

.csj-left-col p,
.csj-left-col a,
.csj-left-col span{
    display:block;
    color:#fff;
    font-size:15px;
    font-weight:700;
    line-height:2;
    text-decoration:none;
    margin-bottom:10px;
}

.csj-contact-card{
    width:100%;
    max-width:100%;
    display:grid;
    grid-template-columns:40% 60%;
    gap:30px;
    padding:44px 34px;
    border:1px solid rgba(255,255,255,.16);
    border-radius:24px;
    background:linear-gradient(135deg,#12382f,#243720);
    box-sizing:border-box;
    overflow:hidden;
}

.csj-contact-text{
    min-width:0;
    color:#fff;
}

.csj-contact-text > span,
.csj-company-box h4{
    color:#d8a93a;
    letter-spacing:.35em;
    font-size:13px;
    font-weight:800;
}

.csj-contact-text h2{
    font-size:40px;
    line-height:1.35;
    margin:28px 0 28px;
}

.csj-contact-text p{
    color:#fff;
    line-height:2;
    font-size:15px;
}

.csj-points{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:28px 0;
}

.csj-points em{
    font-style:normal;
    color:#d8a93a;
    border:1px solid rgba(216,169,58,.7);
    border-radius:999px;
    padding:10px 16px;
    font-size:13px;
    font-weight:800;
}

.csj-company-box{
    border-top:1px solid rgba(255,255,255,.18);
    padding-top:28px;
    margin-top:28px;
}

.csj-company-box ul{
    list-style:none;
    padding:0;
    margin:18px 0 0;
}

.csj-company-box li{
    color:#fff;
    margin-bottom:10px;
    font-size:14px;
}

.csj-contact-form{
    min-width:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}

.csj-checks,
.csj-contact-form textarea,
.csj-contact-form button{
    grid-column:1 / -1;
}

.csj-checks h3{
    color:#fff;
    font-size:20px;
    margin:0 0 14px;
}

.csj-check-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.csj-check-grid label,
.csj-contact-form input,
.csj-contact-form textarea{
    width:100%;
    box-sizing:border-box;
    border:0;
    border-radius:12px;
    background:#fff;
    color:#082c26;
    padding:17px 18px;
    font-size:15px;
    font-weight:700;
}

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

.csj-contact-form button{
    border:0;
    border-radius:12px;
    background:#d8a93a;
    color:#fff;
    padding:18px;
    font-size:17px;
    font-weight:800;
}

@media(max-width:1100px){
    .csj-contact-wrap{
        grid-template-columns:1fr;
    }
}

@media(max-width:760px){
    .csj-contact-left,
    .csj-contact-card,
    .csj-contact-form,
    .csj-check-grid{
        grid-template-columns:1fr;
    }

    .csj-contact-text h2{
        font-size:32px;
    }
}
.site-footer{
    background:#062b25 !important;
    padding:22px 20px !important;
    text-align:center !important;
    border-top:1px solid rgba(255,255,255,.12) !important;
}

.site-footer p{
    color:rgba(255,255,255,.65) !important;
    font-size:13px !important;
    margin:0 !important;
    line-height:1.6 !important;
}
.company-page{
    background:#f7f4ee;
    padding:120px 20px;
}

.company-inner{
    max-width:1100px;
    margin:0 auto;
}

.company-head{
    text-align:center;
    margin-bottom:50px;
}

.company-head span{
    color:#c89d34;
    font-weight:800;
    letter-spacing:4px;
    font-size:14px;
}

.company-head h1{
    font-size:42px;
    color:#0c4f45;
    margin:12px 0;
}

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

.company-box{
    background:#fff;
    border-radius:22px;
    padding:45px;
    box-shadow:0 14px 35px rgba(0,0,0,.08);
}

.company-box h2{
    color:#12332f;
    font-size:28px;
    margin-bottom:30px;
}

.company-table{
    width:100%;
    border-collapse:collapse;
}

.company-table th{
    width:220px;
    background:#f2eee5;
    color:#0c4f45;
    text-align:left;
    padding:22px;
    vertical-align:top;
    border-bottom:1px solid #ddd;
    font-weight:800;
}

.company-table td{
    padding:22px;
    color:#444;
    line-height:1.9;
    border-bottom:1px solid #ddd;
}

.company-table td span{
    color:#777;
}

@media(max-width:768px){
    .company-table,
    .company-table tbody,
    .company-table tr,
    .company-table th,
    .company-table td{
        display:block;
        width:100%;
    }

    .company-table th{
        padding:14px 18px;
    }

    .company-table td{
        padding:18px;
    }
}
/* ==============================
   Consultation Page
============================== */

.consultation-page{
  background:#f7f4ee;
  color:#12332f;
}

.consult-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

.consult-hero{
  padding:130px 20px 80px;
  background:
    radial-gradient(circle at top left, rgba(0,120,95,.15), transparent 35%),
    linear-gradient(180deg, #eef6f2 0%, #f7f4ee 100%);
  text-align:center;
}

.consult-label{
  color:#0b735f;
  font-size:14px;
  font-weight:800;
  letter-spacing:.18em;
  margin-bottom:14px;
}

.consult-hero h1{
  font-size:52px;
  line-height:1.2;
  margin:0 0 22px;
  color:#063f35;
  font-weight:900;
}

.consult-lead{
  font-size:18px;
  line-height:2;
  color:#516862;
  margin:0;
}

.consult-chat-section{
  padding:70px 20px 110px;
}

.consult-chat-card{
  background:#fff;
  border:1px solid rgba(6,63,53,.12);
  border-radius:28px;
  padding:34px;
  margin-bottom:30px;
  box-shadow:0 20px 50px rgba(6,63,53,.08);
}

.chat-row{
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-bottom:22px;
}

.chat-row:last-child{
  margin-bottom:0;
}

.chat-row.csj{
  flex-direction:row-reverse;
}

.chat-icon{
  width:52px;
  height:52px;
  border-radius:50%;
  background:#edf6f3;
  color:#006b57;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  flex-shrink:0;
}

.chat-row.csj .chat-icon{
  background:#006b57;
  color:#fff;
  font-size:13px;
}

.chat-bubble{
  max-width:760px;
  padding:20px 24px;
  border-radius:22px;
  background:#f4f8f6;
  position:relative;
}

.chat-row.csj .chat-bubble{
  background:#006b57;
  color:#fff;
}

.chat-bubble span{
  display:block;
  font-size:13px;
  font-weight:800;
  margin-bottom:8px;
  opacity:.75;
}

.chat-bubble p{
  margin:0;
  font-size:17px;
  line-height:1.9;
  font-weight:600;
}

.consult-cta{
  margin-top:60px;
  padding:44px 30px;
  border-radius:32px;
  background:linear-gradient(135deg,#063f35,#0b7a63);
  text-align:center;
  color:#fff;
  box-shadow:0 24px 60px rgba(6,63,53,.18);
}

.consult-cta p{
  font-size:22px;
  font-weight:800;
  margin:0 0 24px;
}

.consult-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 38px;
  border-radius:999px;
  background:#fff;
  color:#006b57;
  text-decoration:none;
  font-size:18px;
  font-weight:900;
}

@media(max-width:768px){
  .consult-hero{
    padding:90px 20px 60px;
  }

  .consult-hero h1{
    font-size:36px;
  }

  .consult-lead{
    font-size:15px;
  }

  .consult-chat-card{
    padding:22px;
    border-radius:22px;
  }

  .chat-icon{
    width:44px;
    height:44px;
  }

  .chat-bubble{
    padding:16px 18px;
  }

  .chat-bubble p{
    font-size:15px;
  }
}
/* ===============================
   CSJ Consultation UI
================================ */

.csj-consult-page{
  background:#f8f6ef;
}

.csj-consult-ui{
  position:relative;
  max-width:1280px;
  margin:0 auto;
  padding:80px 60px 70px;
  background:
    linear-gradient(135deg, rgba(220,241,233,.9) 0%, rgba(255,252,244,.98) 38%, rgba(255,248,235,.96) 100%);
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.csj-bg-circle-left{
  position:absolute;
  width:420px;
  height:420px;
  left:-180px;
  top:-150px;
  background:rgba(169,219,203,.35);
  border-radius:50%;
}

.csj-bg-circle-right{
  position:absolute;
  width:300px;
  height:300px;
  right:-70px;
  top:-90px;
  border-radius:50%;
  border:1px solid rgba(6,63,53,.08);
  box-shadow:
    0 0 0 20px rgba(6,63,53,.025),
    0 0 0 40px rgba(6,63,53,.02),
    0 0 0 60px rgba(6,63,53,.015);
}

.csj-bg-dot{
  position:absolute;
  left:55px;
  top:90px;
  width:150px;
  height:150px;
  opacity:.25;
  background-image:radial-gradient(#0b7a63 1.4px, transparent 1.4px);
  background-size:14px 14px;
}

.csj-consult-head{
  position:relative;
  text-align:center;
  margin-bottom:45px;
}

.csj-consult-head h1{
  margin:0 0 18px;
  font-size:58px;
  line-height:1.1;
  font-weight:900;
  color:#063f35;
  letter-spacing:.04em;
}

.csj-consult-head p{
  margin:0;
  font-size:18px;
  line-height:1.9;
  color:#445b55;
  font-weight:700;
}

.csj-consult-layout{
  position:relative;
  display:grid;
  grid-template-columns:320px 1fr;
  gap:26px;
  align-items:stretch;
}

.csj-advisor-panel{
  background:linear-gradient(160deg,#064b40 0%,#087962 58%,#075c4d 100%);
  border-radius:24px;
  color:#fff;
  padding:42px 34px 34px;
  min-height:500px;
  box-shadow:0 25px 60px rgba(6,63,53,.22);
  position:relative;
  overflow:hidden;
}

.csj-advisor-panel:after{
  content:"";
  position:absolute;
  left:-20px;
  right:-20px;
  bottom:0;
  height:90px;
  background:
    repeating-radial-gradient(ellipse at bottom, rgba(216,170,42,.55) 0 1px, transparent 2px 10px);
  opacity:.45;
}

.csj-logo-avatar{
  width:120px;
  height:120px;
  border-radius:50%;

    background:url("https://shikata.superhotelclean.co.jp/CSJ/wp-content/themes/csj-wp-theme-backup/img/csj-avatar.jpg") center center / cover no-repeat;
  margin:0 auto 28px;
  position:relative;
  box-shadow:0 18px 35px rgba(0,0,0,.16);
  border:6px solid #fff;
}

.csj-logo-avatar span,
.csj-logo-avatar i{
  display:none;
}

.csj-logo-avatar i{
  color:#d8aa2a;
  font-style:normal;
  position:absolute;
  right:28px;
  top:30px;
}

.csj-advisor-panel h2{
  text-align:center;
  font-size:30px;
  margin:0 0 18px;
  font-weight:900;
}

.csj-advisor-panel p{
  text-align:center;
  font-size:17px;
  line-height:1.8;
  margin:0 0 28px;
  font-weight:700;
}

.advisor-list{
  display:grid;
  gap:12px;
  position:relative;
  z-index:2;
}

.advisor-list div{
  display:flex;
  align-items:center;
  gap:14px;
  background:rgba(255,255,255,.11);
  padding:14px 18px;
  border-radius:12px;
  font-weight:900;
}

.advisor-list span{
  color:#e0b12b;
  font-size:24px;
}

.csj-chat-panel{
  background:#fff;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 25px 60px rgba(6,63,53,.12);
  border:1px solid rgba(6,63,53,.12);
}

.chat-top{
  height:74px;
  padding:0 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid #e2e9e6;
}

.chat-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:20px;
  font-weight:900;
  color:#063f35;
}

.green-dot,
.online-badge span{
  width:14px;
  height:14px;
  border-radius:50%;
  background:#65c84f;
  display:inline-block;
}

.online-badge{
  display:flex;
  gap:8px;
  align-items:center;
  background:#eaf5ef;
  color:#006b57;
  padding:8px 18px;
  border-radius:999px;
  font-weight:900;
}

.online-badge span{
  width:10px;
  height:10px;
}

.chat-content{
  padding:28px 34px 22px;
  background:#fff;
  min-height:360px;
  max-height:460px;
  overflow-y:auto;
}

.bot-message{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:12px;
}

.small-logo{
  width:54px;
  height:54px;
  border-radius:50%;
  background:#fff;
  border:1px solid #dde6e2;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  flex-shrink:0;
}

.small-logo span{
  color:#063f35;
  font-weight:900;
  font-family:Georgia, serif;
  font-size:20px;
}

.small-logo i{
  color:#d8aa2a;
  font-style:normal;
  font-size:12px;
  position:absolute;
  right:10px;
  top:11px;
}

.message-bubble{
  background:#edf4f1;
  color:#12332f;
  border-radius:18px;
  padding:17px 22px;
  font-size:16px;
  line-height:1.8;
  font-weight:800;
  max-width:520px;
}

.chat-time{
  margin-left:80px;
  margin-bottom:16px;
  color:#7c8c87;
  font-size:13px;
  font-weight:700;
}

.user-message{
  display:flex;
  justify-content:flex-end;
  margin:16px 0;
}

.user-message .message-bubble{
  background:#006b57;
  color:#fff;
}

.choice-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.choice-grid button{
  border:1px solid #dde7e3;
  background:#fff;
  border-radius:18px;
  padding:18px 18px;
  display:grid;
  grid-template-columns:58px 1fr 20px;
  align-items:center;
  gap:15px;
  text-align:left;
  cursor:pointer;
  transition:.25s;
  box-shadow:0 10px 24px rgba(6,63,53,.04);
}

.choice-grid button:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(6,63,53,.12);
  border-color:#0b7a63;
}

.choice-icon{
  width:58px;
  height:58px;
  border-radius:50%;
  background:#e6f3ee;
  color:#006b57;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:900;
}

.choice-grid h3{
  margin:0 0 6px;
  font-size:20px;
  color:#063f35;
  font-weight:900;
}

.choice-grid p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:#445b55;
  font-weight:700;
}

.choice-grid b{
  font-size:28px;
  color:#006b57;
}

.chat-bottom a{
  background:linear-gradient(135deg,#d8aa2a,#e4b328);
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  padding:15px 20px;
  font-weight:900;
  text-align:center;
  box-shadow:0 12px 28px rgba(216,170,42,.25);
  white-space:nowrap;
}

.fake-input{
  background:#f2f5f4;
  border:1px solid #dde5e2;
  border-radius:999px;
  padding:15px 22px;
  color:#899691;
  font-weight:800;
}

.send-btn{
  position:absolute;
  right:8px;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border:none;
  border-radius:50%;
  background:#c8cdca;
  color:#fff;
  font-size:18px;
  z-index:2;
}

.chat-bottom{
  border-top:1px solid #e2e9e6;
  padding:18px 24px;
  display:grid;
  grid-template-columns:1fr 190px;
  gap:14px;
  align-items:center;
}
.privacy-note{
  width:max-content;
  max-width:90%;
  margin:30px auto 0;
  background:rgba(255,255,255,.65);
  color:#0b705d;
  border-radius:999px;
  padding:13px 34px;
  font-weight:800;
  box-shadow:0 14px 35px rgba(6,63,53,.08);
}

@media(max-width:900px){
  .csj-consult-ui{
    padding:60px 20px;
  }

  .csj-consult-layout{
    grid-template-columns:1fr;
  }

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

  .chat-bottom{
    grid-template-columns:1fr;
  }
}
.input-wrap{
  position:relative;
  width:100%;
}

.real-input{
  width:100%;
  height:54px;
  background:#f2f5f4;
  border:1px solid #dde5e2;
  border-radius:999px;
  padding:15px 66px 15px 22px;
  color:#12332f;
  font-weight:800;
  outline:none;
  box-sizing:border-box;
}


.real-input::placeholder{
  color:#899691;
}

.future-feature-card{
  max-width:720px;
  margin:28px auto 0;
  padding:18px 22px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;

  background:#ffffff;
  color:#063f35;

  border:1px solid #e3ece8;
  border-radius:20px;

  box-shadow:0 10px 28px rgba(6,63,53,.07);
  position:relative;
  overflow:hidden;
}

.future-feature-card:after{
  display:none;
}

.future-feature-text{
  flex:1;
  position:relative;
  z-index:2;
}

.future-feature-text span{
  display:inline-block;
  color:#d8aa2a;
  font-size:11px;
  font-weight:900;
  letter-spacing:.14em;
  margin-bottom:6px;
}

.future-feature-text h3{
  font-size:24px;
  line-height:1.2;
  margin:0 0 8px;
  font-weight:900;
  color:#063f35;
}

.future-feature-text p{
  font-size:13px;
  line-height:1.6;
  margin:0 0 10px;
  color:#4d625c;
  font-weight:700;
}

.future-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}

.future-tags em{
  font-style:normal;
  padding:5px 9px;
  border-radius:999px;

  background:#eef6f3;
  color:#063f35;

  border:1px solid #dbe9e4;
  font-size:11px;
  font-weight:900;
  white-space:nowrap;
}

.future-video{
  width:190px;
  flex-shrink:0;

  border-radius:14px;
  overflow:hidden;
  background:#000;

  box-shadow:0 10px 28px rgba(0,0,0,.14);
}

.future-video video{
  width:100%;
  display:block;
  border-radius:14px;
}

@media(max-width:768px){
  .future-feature-card{
    max-width:92%;
    flex-direction:column;
    align-items:flex-start;
  }

  .future-video{
    width:100%;
  }
}