/* common */
    #page div,
    #page p{
        line-height: 1.5;
    }
    section img{
        max-width: 100%;
        width: 100%;
    }
    .content_container h2{
        font-size: 24px;
        margin: 50px 0 30px;
        background-color: #4cb5a0;
        color: white;
        border-top: none;
        padding: 10px 15px !important;
    }
    .content_container:has(ul.head) > h3{
        font-size: 40px;
        color: #4cb5a0;
        font-weight: 700;
    }
    .content_container .fv p{
        line-height: 1.5;
        padding-top: 20px;
        padding-bottom: 40px;
    }
    section h3.border{
        padding: 0 0.5rem;
        background: transparent;
        border: none;
        border-left: solid 10px #4cb39d;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: 0.08rem;
        color: #1a1a1a;
        margin: 0 0 35px 0;
    }
    .text_red{
        color: #ff0000;
    }
    .intro_text{
        padding: 12px;
        line-height: 32px;
        margin-bottom: 30px;
    }
    details summary .question span, 
    details .answer span{
        color: #b54c4cff;
    }
    .wa-cta {
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: #25d366;
        color: white;
        text-decoration: none;
        padding: 16px 32px;
        margin: 36px auto 0;
        text-align: center;
        font-size: 15px;
        font-weight: 600;
        border-radius: 14px;
        width: 100%;
        max-width: 400px;
        transition: opacity 0.3s ease-in;
    }
    .wa-cta:hover {
        color: #FFF;
        opacity: 0.8;
    }
    .wa-icon {
        width: 22px;
        height: 22px;
    }
    .wa-cta br{
        display: none;
    }
    @media (max-width: 768px) {
        .content_container:has(ul.head) > h3{
            font-size: 32px;
        }
        .wa-cta {
            display: block;
            margin-top: 0;
        }
    }
    /* main */
    section .flex_box{
        display: flex;
        justify-content: space-between;
        padding-bottom: 40px;
        border-radius: 24px;
        padding: 24px;
        flex-direction: row-reverse;
        background-color: #fbffd740;
        border: 2px solid #4cb5a0;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
    }
    section .flex_box:not(:last-child) {
        margin-bottom: 30px;
    }
    section#flow .flex_box .img {
        width: 20%;
    }
    section#flow .flex_box .text {
        width: 75%;
    }
    .anchor_color {
        color: #4cb5a0; text-decoration: underline;
    }
    /* fv */
    .fv {
        position: relative;
        overflow: hidden;
    }
    .fv p{
        display: none;
    }
    .fv img {
        width: 100%;
        display: block;
    }
    .fv::after {
        content: "";
        position: absolute;
        inset: 0;
        /* background: linear-gradient(
            35deg,
            rgba(229, 246, 254, 0.6) 0%,
            rgba(230, 249, 243, 0.6) 52%,
            rgba(231, 255, 229, 0.6) 100%
        ); */
        background: linear-gradient(0deg, rgba(229, 246, 254, 0.1) 0%, rgba(255, 255, 255, 0.4) 52%, rgba(229, 255, 254, 0.1) 100%);
    }
    .fv_title {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2;
        text-align: center;
        padding: 20px;
        background: rgba(255, 255, 255, 0.5);
    }
    .fv .fv_title h2{
        font-size: 30px;
        background: none;
        /* color: #4cb5a0; */
        color: hsl(168deg 41.5% 30.39%);
        margin: 0;
        padding: 0;
        font-weight: 800;
        text-shadow: 0 2px 6px rgba(76,181,760,0.3);
    }
    .fv .fv_title h3{
        background: none;
        font-size: 24px;
        color: hsl(168deg 41.5% 30.39%);
        margin: 0;
        padding: 0;
        font-weight: 800;
        text-shadow: 0 2px 6px rgba(76,181,760,0.3);
    }
    @media (max-width: 768px) {
    .fv .fv_title h2{
        /* 20-30 */
        font-size: clamp(1.25rem, 0.889rem + 1.8051vw, 1.875rem);
    }
    .fv .fv_title h3{
        /* 16-24 */
        font-size: clamp(1rem, 0.7112rem + 1.444vw, 1.5rem);
    }
    }
    /* reason */
    #reason .grid_box {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }
    #reason .grid_box .grid_card {
        border-radius: 24px;
        padding: 24px;
        flex-direction: row-reverse;
        background: linear-gradient(35deg, rgb(229 246 254) 0%, rgb(230 249 243) 52%, rgb(231 255 229) 100%);
        border: 2px solid #4cb5a0;
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, .25);
        transition: all 0.3s ease-in-out;
    }
    #reason .grid_box .grid_card:hover{
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }
    #reason .grid_box .grid_card .text{
        display: grid;
        grid-template-rows: 1fr auto;
    }
    #reason .grid_box .card_title {
        margin-bottom: 15px;
        color: #4cb5a0;
        gap: 20px;
        align-items: center;
        font-size: 19px;
        font-weight: 700;
        min-height: 100px;
        display: flex;
        align-items: center;
    }
    #reason .grid_box .card_title .point{
        text-align: center;
        color: white;
        font-size: 22px;
        position: relative;
        z-index: 1;
        line-height: 1.2;
        background-color: #4cb5a0;
        border-radius: 5px;
        padding: 10px;
    }
    @media (max-width: 768px) {
        #reason .grid_box {
            grid-template-columns: 1fr;
        }
        #reason .grid_box .card_title {
            margin-bottom: 0;
            padding-top: 0;
        }
        #reason .grid_box .card_title .point{
            margin-bottom: 15px;
            padding: 5px 15px;
            width: fit-content;
        }
    }
    /* references */
    .references a{
        text-decoration: underline;
        color: #1a7fac;
        transition: opacity 0.3s ease-in;
    }
    .references a:hover{
        opacity: 0.8;
    }
    /* list */
    #list h3{
        color: #4cb39d;
        font-weight: 600;
        padding: 0;
        background: transparent;
        border: none;
        font-size: 28px;
        line-height: 1.2;
        letter-spacing: 0.08rem;
        margin: 0 0 15px 0;
    }
    #list h3 span:not(.text_red){
        width: 20px;
        height: 20px;
        border-radius: 99px;
        display: inline-block;
        margin-right: 5px;
    }
    #list h3:first-of-type span:first-child {
        background-image: linear-gradient(220.55deg, #ff9f28 0%, #E20000 100%);
    }
    #list h3:nth-of-type(2) span:first-child {
        background-image: linear-gradient(220.55deg, #FFD439 0%, #FF7A00 100%);
    }
    #list h3:last-of-type span:first-child {
        background-image: linear-gradient(220.55deg, #fffa5d 0%, #FFD439 100%);
    }
    #list h3:first-child {
        margin-top: 30px;
    }
    section .list_box{
        border: 2px solid #4cb5a0;
        border-radius: 24px;
        padding: 24px;
    }
    section .list_box h4{
        font-size: 20px;
        margin-bottom: 10px;
    }
    section .list_box h4:not(:first-of-type) {
        margin-top: 30px;
    }
    section .list_box:not(:last-child) {
        margin-bottom: 30px;
    }
    @media (max-width: 768px) {
        #list h3{
            padding: 0 0.5rem;
            font-size: 21px;
        }
        section .list_box{
            padding: 15px;
        }
    }
    /* price */
    .pax-toggle {
        display: flex;
        gap: 8px;
        margin-bottom: 28px;
        color: #4cb5a0;
        padding: 4px;
        border-radius: 12px;
        margin: 0 auto 28px;
        align-items: center;
        justify-content: center;
        background: linear-gradient(35deg, rgb(229 246 254) 0%, rgb(230 249 243) 52%, rgb(231 255 229) 100%);
        width: fit-content;
    }
    .pax-btn {
        padding: 8px 20px;
        border-radius: 9px;
        border: none;
        background: transparent;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.2s;
    }
    .pax-btn:hover{
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }
    .pax-btn.active {
        background: #fff;
        color: #4cb5a0;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }
    /* Pricing Cards */
    .pricing-grid > p{
        display: none !important;
    }
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .price-card {
        background: white;
        border-radius: 20px;
        padding: 28px 24px;
        border: 2px solid #EDE8DD;
        position: relative;
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .price-card:hover {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    }
    .price-card.featured {
        background: #FFF;
        border-color: #4cb5a0;
        background: linear-gradient(35deg, rgb(229 246 254) 0%, rgb(230 249 243) 52%, rgb(231 255 229) 100%);
    }
    .badge {
        position: absolute;
        top: -12px;
        left: 50%;
        transform: translateX(-50%);
        background: #4cb5a0;
        color: #fff;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
        padding: 4px 14px;
        border-radius: 20px;
        white-space: nowrap;
    }
    .card-title {
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 6px;
    }
    .featured .card-title {
        color: #4cb5a0;
    }
    .card-vaccines {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    .vaccine-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 20px;
    }
    .vtag {
        font-size: 11px;
        font-weight: 500;
        padding: 3px 10px;
        border-radius: 20px;
        background: #fff;
        color: #4cb5a0;
        border: 1px solid #4cb5a0;
    }
    .divider {
        height: 1px;
        background: #4cb5a0;
        margin-bottom: 20px;
    }
    .price-row {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin-bottom: 4px;
    }
    .price-amount {
        font-size: 28px;
        font-weight: 700;
        line-height: 1;
    }
    .featured .price-amount{
        color: #4cb5a0;
    }
    .price-currency {
        font-size: 13px;
        font-weight: 500;
    }
    .price-per {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .savings-badge {
        font-weight: 600;
        background: #4cb5a0;
        padding: 5px 15px;
        border-radius: 20px;
        display: block;
        text-align: center;
        width: fit-content;
        margin: 10px auto 0 0;
        color: #fff;
    }
    @media (max-width: 768px) {
        .pricing-grid {
            grid-template-columns: 1fr;
        }
        .price-card.featured {
            transform: none;
        }
        .promo-banner {
            flex-wrap: wrap;
        }
        .badge {
            position: static;
            transform: none;
            margin: 0 auto 15px 0;
            width: fit-content;
        }
    }
    /* flow */
    section .flex_box p:not(.flex_text){
        display: none;
    }
    section .flex_box .text ul{
        margin: 10px 0;
    }
    section .flex_box .text ul li{
        line-height: 1.5;
    }
    section .flex_box .text ul li span{
        color: #4cb5a0;
        margin-right: 5px;
        font-weight: 800;
    }
    @media (max-width: 768px) {
        /* flow */
        section .flex_box{
            padding: 10px;
        }
        .flex_box .text .midashi2{
            font-size: 20px;
            align-items: center;
        }
    }
    /* faq */
    details summary {
        font-size: 20px;
        background: linear-gradient(135deg, #4cb5a0, #6ed3b6);
        color: #fff;
        padding: 2px;
        border-radius: 14px;
        cursor: pointer;
    }
    details summary .question {
        position: relative;
        display: flex;
        gap: 5px;
        font-size: 18px !important;
        font-weight: 400 !important;
        padding: 12px 40px 12px 12px !important;
    }
    details .answer{
        display: flex;
    }
    details summary .question span,
    details .answer span{
        flex-shrink: 0;
    }
    summary .question::before {
        content: "";
        position: absolute;
        right: 16px;
        top: 50%;
        width: 18px;
        height: 2px;
        background: #4cb5a0;
        transform: translateY(-50%);
    }
    summary .question::after {
        content: "";
        position: absolute;
        right: 24px;
        top: 50%;
        width: 2px;
        height: 18px;
        background: #4cb5a0;
        transform: translateY(-50%);
        transition: transform .3s ease, opacity .3s ease;
    }
    details[open] summary .question::after {
        opacity: 0;
        transform: translateY(-50%) rotate(90deg);
    }
    @media (max-width: 768px) {
        details summary .question {
            font-size: 18px !important;
            font-weight: 400 !important;
        }
    }
    @media screen and (max-width: 768px) {
        #follow {
            position: fixed;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 400px;
            z-index: 9999;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            padding: 12px;
        }
        .grecaptcha-badge{
            display: none;
        }
    }

	/* new fv */
	:root {
  --navy-900: #1B2559;
  --navy-800: #2B3674;
  --navy-700: #3A4A8A;
  --navy-600: #4A5EA0;
  --navy-500: #5B72B6;
  --accent: #4FD1C5;
  --accent-light: #B2F5EA;
  --accent-50: #E6FFFA;
  --gold-600: #B45309;
  --gold-500: #D97706;
  --gold-400: #F59E0B;
  --gold-300: #FCD34D;
  --gold-200: #FDE68A;
  --gold-100: #FEF3C7;
  --gold-50: #FFFBEB;
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;
  --wa-green: #25D366;
}

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

body {
  font-family: 'Noto Sans', sans-serif;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.8;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ========== HERO ========== */
.hero {
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  color: var(--white);
  padding: 40px 20px 48px;
  position: relative;
  overflow: hidden;
}
.hero-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.hero-logo {
    height: 70px;
    margin-bottom: 24px;
    opacity: 0.95;
    width: auto;
    background-color: #fff;
}
.hero-badge {
  display: inline-block;
  background: rgba(79,209,197,0.15);
  border: 1px solid rgba(79,209,197,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--accent);
  letter-spacing: 0.3px;
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 14px;
}
.hero h1 em {
  font-style: normal;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  opacity: 0.85;
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.7;
}

/* Hero price strip */
.hero-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-price-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 14px 18px;
  flex: 1;
  min-width: 180px;
}
.hero-price-card.popular {
  background: rgba(79,209,197,0.12);
  border-color: rgba(79,209,197,0.3);
}
.hero-price-label { font-size: 13px; font-weight: 600; opacity: 0.65; margin-bottom: 3px; }
.hero-price-card.popular .hero-price-label { color: var(--accent); opacity: 1; }
.hero-price-amount { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; }
.hero-price-note { font-size: 12px; opacity: 0.55; margin-top: 2px; }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  font-family: inherit;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn-wa svg { width: 20px; height: 20px; fill: currentColor; }
.wa-icon { width: 20px; height: 20px; fill: currentColor; }

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-200);
  padding: 14px 20px;
}
.trust-bar-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 15px;
  color: var(--slate-600);
  font-weight: 500;
}
.trust-bar-inner span { display: flex; align-items: center; gap: 6px; font-size: 12px;}

/* ========== SECTION COMMON ========== */
section { padding: 52px 20px; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--navy-700);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(24px, 4.5vw, 36px);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: 10px;
  line-height: 1.3;
}
.section-subtitle {
  font-size: 17px;
  color: var(--slate-500);
  max-width: 620px;
  margin-bottom: 32px;
}


/* ========== FLOATING CTA ========== */
.floating-cta { position: fixed; bottom: 18px; right: 18px; z-index: 999; }
.floating-cta a { display: flex; align-items: center; gap: 7px; background: var(--wa-green); color: var(--white); padding: 12px 20px; border-radius: 100px; font-size: 14px; font-weight: 700; text-decoration: none; box-shadow: 0 6px 20px rgba(37,211,102,0.4); transition: transform 0.2s; }
.floating-cta a:hover { transform: scale(1.05); }

/* CTA section */
.cta-section { padding: 28px 20px; text-align: center; }
.cta-navy { background: linear-gradient(135deg, var(--navy-900), var(--navy-800)); }
.cta-light { background: var(--accent-50); }

@media (max-width: 600px) {
  section { padding: 36px 16px; }
  .hero { padding: 32px 16px 40px; }
  .price-grid { grid-template-columns: 1fr; }
  .eicv-section { padding: 22px 18px; }
  .hero-prices { gap: 8px; }
  .hero-price-card { min-width: 140px; padding: 12px 14px; }
  .hero-price-amount { font-size: 20px; }
}

.dym-booking-form,
.dym-booking-form * {
  box-sizing: border-box;
}

.dym-booking-form {
  --dym-primary: #1a4731;
  --dym-primary-light: #2d6b4a;
  --dym-accent: #c8a951;
  --dym-bg: #ffffff;
  --dym-bg-soft: #f7f9f7;
  --dym-border: #d8e0d8;
  --dym-text: #1f2937;
  --dym-text-muted: #6b7280;
  --dym-error: #dc2626;
  --dym-success: #16a34a;
  --dym-whatsapp: #25d366;

  max-width: 720px;
  margin: 40px auto;
  padding: 32px 28px;
  background: var(--dym-bg);
  border: 1px solid var(--dym-border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26, 71, 49, 0.06);
  color: var(--dym-text);
  line-height: 1.5;
}

/* Progress Indicator */
.dym-booking-form .dym-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.dym-booking-form .dym-progress-step {
  display: flex;
  align-items: center;
  gap: 10px;
}
.dym-booking-form .dym-progress-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dym-bg-soft);
  color: var(--dym-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid var(--dym-border);
  transition: all 0.3s;
}
.dym-booking-form .dym-progress-step.active .dym-progress-num {
  background: var(--dym-primary);
  color: white;
  border-color: var(--dym-primary);
}
.dym-booking-form .dym-progress-step.completed .dym-progress-num {
  background: var(--dym-success);
  color: white;
  border-color: var(--dym-success);
}
.dym-booking-form .dym-progress-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--dym-text-muted);
}
.dym-booking-form .dym-progress-step.active .dym-progress-label {
  color: var(--dym-primary);
  font-weight: 600;
}
.dym-booking-form .dym-progress-line {
  width: 48px;
  height: 2px;
  background: var(--dym-border);
}

/* Step Container */
.dym-booking-form .dym-step {
  display: none;
  animation: dymFadeIn 0.3s ease;
}
.dym-booking-form .dym-step.active {
  display: block;
}
@keyframes dymFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dym-booking-form .dym-step-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--dym-primary);
  margin: 0 0 6px;
}
.dym-booking-form .dym-step-desc {
  font-size: 13px;
  color: var(--dym-text-muted);
  margin: 0 0 20px;
}

/* Fields */
.dym-booking-form .dym-field {
  margin-bottom: 16px;
}
.dym-booking-form .dym-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dym-text);
  margin-bottom: 6px;
}
.dym-booking-form .dym-field .req {
  color: var(--dym-error);
}

.dym-booking-form .dym-field input[type="text"],
.dym-booking-form .dym-field input[type="tel"],
.dym-booking-form .dym-field input[type="email"],
.dym-booking-form .dym-field input[type="date"],
.dym-booking-form .dym-field input[type="time"],
.dym-booking-form .dym-field select,
.dym-booking-form .dym-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dym-text);
  background: var(--dym-bg);
  border: 1px solid var(--dym-border);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dym-booking-form .dym-field input:focus,
.dym-booking-form .dym-field select:focus,
.dym-booking-form .dym-field textarea:focus {
  outline: none;
  border-color: var(--dym-primary);
  box-shadow: 0 0 0 3px rgba(26, 71, 49, 0.1);
}
.dym-booking-form .dym-field textarea {
  resize: vertical;
  min-height: 72px;
}
.dym-booking-form .dym-field input.dym-error,
.dym-booking-form .dym-field select.dym-error,
.dym-booking-form .dym-field textarea.dym-error {
  border-color: var(--dym-error);
  background: #fef2f2;
}

.dym-booking-form input.wpcf7-form-control:not([type="checkbox"]),
.dym-booking-form select.wpcf7-form-control,
.dym-booking-form textarea.wpcf7-form-control {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  color: var(--dym-text);
  background: var(--dym-bg);
  border: 1px solid var(--dym-border);
  border-radius: 8px;
  font-family: inherit;
}

/* acceptance専用 */
.dym-consent .wpcf7-form-control-wrap {
  display: inline;
}

.dym-consent .wpcf7-list-item {
  margin: 0;
}

.dym-consent input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
  vertical-align: middle;
}

/* Row Layout (date + time) */
.dym-booking-form .dym-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .dym-booking-form .dym-row {
    grid-template-columns: 1fr;
  }
}

/* Conditional Field (for Asuransi) */
.dym-booking-form .dym-conditional {
  padding: 14px;
  background: var(--dym-bg-soft);
  border-left: 3px solid var(--dym-accent);
  border-radius: 4px;
  margin-bottom: 16px;
}
.dym-booking-form .dym-conditional label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dym-primary);
  margin-bottom: 6px;
}

/* Consent Checkbox */
.dym-booking-form .dym-consent {
  background: var(--dym-bg-soft);
  padding: 14px;
  border-radius: 8px;
  margin: 20px 0;
  font-size: 13px;
  line-height: 1.5;
}
.dym-booking-form .dym-consent .wpcf7-list-item {
  margin: 0;
}
.dym-booking-form .dym-consent a {
  color: var(--dym-primary);
  text-decoration: underline;
}

/* Buttons */
.dym-booking-form .dym-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.dym-booking-form .dym-btn {
  flex: 1;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.dym-booking-form .dym-btn-primary,
.dym-booking-form input[type="submit"].dym-btn-primary {
  background: var(--dym-primary);
  color: white;
}
.dym-booking-form .dym-btn-primary:hover,
.dym-booking-form input[type="submit"].dym-btn-primary:hover {
  background: var(--dym-primary-light);
  transform: translateY(-1px);
}
.dym-booking-form .dym-btn-secondary {
  background: white;
  color: var(--dym-primary);
  border: 1px solid var(--dym-primary);
}
.dym-booking-form .dym-btn-secondary:hover {
  background: var(--dym-bg-soft);
}
.dym-booking-form .dym-btn-whatsapp {
  background: var(--dym-whatsapp);
  color: white;
  padding: 16px 24px;
  font-size: 16px;
}
.dym-booking-form .dym-btn-whatsapp:hover {
  background: #1ebe5a;
  color: white;
  text-decoration: none;
}

/* Success State (overlay after submission) */
.dym-booking-form.dym-success-state .dym-progress,
.dym-booking-form.dym-success-state .dym-step,
.dym-booking-form.dym-success-state .wpcf7-response-output {
  display: none !important;
}
.dym-booking-form .dym-success-message {
  display: none;
  text-align: center;
  padding: 24px 12px;
}
.dym-booking-form.dym-success-state .dym-success-message {
  display: block;
}
.dym-booking-form .dym-success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--dym-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: bold;
}
.dym-booking-form .dym-success-message h3 {
  font-size: 22px;
  color: var(--dym-primary);
  margin: 0 0 12px;
}
.dym-booking-form .dym-success-message p {
  color: var(--dym-text-muted);
  font-size: 15px;
  margin: 0 0 24px;
}

/* CF7 default elements override */
.dym-booking-form .wpcf7-not-valid-tip {
  color: var(--dym-error);
  font-size: 12px;
  margin-top: 4px;
}
.dym-booking-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

/* Loading state during submission */
.dym-booking-form .wpcf7-spinner {
  background-color: var(--dym-primary);
}
