/*======================================
HEADER
======================================*/

.site-header{

    background:#ffffff;

    border-bottom:1px solid #e5e7eb;

}
.site-header{
    position:sticky;
    top:0;
    z-index:9999;
    transition:all .35s ease;
}

.site-header.scrolled{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.site-header.scrolled .header-inner{
    height:72px;
    transition:height .35s ease;
}

.site-header.scrolled .custom-logo{
    max-height:70px !important;
    transition:max-height .35s ease;
}

.site-header.scrolled .btn-primary{
    padding:12px 24px;
}

.header-inner{

    max-width:1200px;

    margin:auto;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.logo img,
.custom-logo {

    max-height:90px !important;
    width:auto !important;
    height:auto !important;
    display:block;

}

.main-nav ul{

    display:flex;

    gap:40px;

    list-style:none;

    margin:0;

    padding:0;

}

.main-nav li{

    list-style:none;

}

.main-nav a{
    position: relative;
    text-decoration: none;
    transition: color .3s ease;
}

.main-nav a:hover{
    color:#1565C0;
}

.main-nav a::after{

    content:"";

    position:absolute;

    left:50%;

    bottom:-12px;

    width:0;

    height:2px;

    background:#1565C0;

    border-radius:999px;

    transform:translateX(-50%);

    transition:width .28s ease;

}

.main-nav a:hover::after{

    width:100%;

}
/* Active Navigation */
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a{

    color:#1565C0;
    position:relative;

}

.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after,
.main-nav .current-menu-ancestor > a::after{

    width:100%;

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    background:#1565C0;

    color:#ffffff;

    padding:14px 28px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

}

.btn-primary:hover{

    background:#0D2F6F;

}

/* ======================================================
   HERO SECTION
====================================================== */

.hero{

    padding:28px 0 18px;

    background:#ffffff;

}

.hero .container{

    max-width:1200px;

    margin:0 auto;

    padding:0 20px;

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    gap:40px;

}

.hero-content {
    flex: 0 0 52%;
    max-width: 52%;
}

.hero-image{

    flex:0 0 48%;

    display:flex;

    justify-content:flex-end;

    align-items:flex-start;

    padding-top:18px;

}

.hero-image img{

    width:115%;

    max-width:780px;

    height:auto;

    display:block;

}

.hero-tagline {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 17px;
    font-weight: 600;

    color: #2563eb;
}

.hero h1 {

    font-size: 52px;
    line-height: 1.15;

    font-weight: 800;

    color: #1f2937;

    margin-bottom: 24px;
}

.hero p{

    font-size:18px;

    line-height:1.75;

    color:#4b5563;

    margin-bottom:28px;

}

/* ======================================
   HERO BUTTONS
====================================== */

.hero-buttons{

    display:flex;

    align-items:center;

    gap:16px;

    margin-bottom:22px;

}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 28px;

    border:2px solid #1565C0;
    border-radius:50px;

    color:#1565C0;
    background:#ffffff;

    text-decoration:none;
    font-weight:600;

    transition:.3s;
}

.btn-secondary:hover{
    background:#1565C0;
    color:#ffffff;
}

/* ======================================
   HERO FEATURES
====================================== */

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:18px 28px;

    font-size:16px;
    font-weight:500;
    color:#374151;
}

.hero-features span{
    display:flex;
    align-items:center;
}

/* ======================================================
   OUR SERVICES
====================================================== */

.services{
    padding:50px 0 90px;
    background:#f8fafc;
}

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

.section-heading{
    max-width:620px;
    margin:0 auto 80px;
    text-align:center;
}

.section-heading h2{

    font-size:50px;

    font-weight:800;

    color:#1f2937;

    line-height:1.15;

    margin-bottom:18px;

}

.section-heading p{

    max-width:660px;

    margin:0 auto;

    font-size:18px;

    line-height:1.9;

    color:#6b7280;

}

.services-grid{

    display:grid;

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

    gap:32px;

}

.service-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:22px;

    padding:38px 34px;

    box-shadow:0 12px 40px rgba(15,23,42,.06);

    transition:all .35s ease;

    display:flex;

    flex-direction:column;

    height:100%;

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:#dbe8fb;

    box-shadow:0 22px 45px rgba(21,101,192,.12);

}

.service-icon{

    width:60px;

    height:60px;

    border-radius:16px;

    background:#edf5ff;

    color:#1565C0;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    margin-bottom:22px;

    transition:all .35s ease;

}

.service-card:hover .service-icon{

    background:#1565C0;

    color:#ffffff;

}

.service-card h3{

    font-size:21px;

    line-height:1.35;

    font-weight:700;

    color:#1f2937;

    margin-bottom:16px;

}

.service-card p{

    color:#5b6472;

    line-height:1.9;

    font-size:16px;

    margin-bottom:28px;

    flex-grow:1;

}

.service-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-weight:600;

    color:#1565C0;

    text-decoration:none;

    transition:all .3s ease;

    margin-top:auto;

}

.service-link i{

    transition:transform .3s ease;

}

.service-card:hover .service-link i{

    transform:translateX(6px);

}

.service-link:hover{

    color:#0d47a1;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:#edf5ff;

    color:#1565C0;

    border:1px solid #dbe8fb;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:18px;

}

.section-tag i{

    font-size:12px;

}

/* ======================================================
   WHY PLANET 360
====================================================== */

.why-planet{
    padding:85px 0 90px;
    background:#ffffff;
}

.why-planet .container{

    max-width:1200px;

    margin:0 auto;

    padding:0 20px;

}


/* Section Heading
--------------------------------------*/

.why-planet .section-heading{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.why-planet .section-heading h2{

    margin-bottom:22px;

}

.why-planet .section-heading p{

    max-width:720px;

    margin:0 auto;

}


/* Trust Highlights
--------------------------------------*/

.trust-highlights{

    margin-top:40px;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:18px 36px;

}

.trust-highlights span{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:16px;

    font-weight:600;

    color:#374151;

}

.trust-highlights i{

    color:#1565C0;

    font-size:17px;

}

/*======================================
  FEATURED CARD
======================================*/

.featured-card{

    max-width:840px;

    margin:55px auto 40px;

    background:#ffffff;

    border:1px solid #edf2f7;

    border-radius:24px;

    padding:48px 55px;

    box-shadow:0 18px 45px rgba(15,23,42,.08);

    transition:.35s ease;

}

.featured-card:hover{

    transform:translateY(-4px);

    box-shadow:0 24px 55px rgba(15,23,42,.12);

}

.featured-card-content{

    text-align:center;

}

.featured-icon{

    width:64px;

    height:64px;

    margin:0 auto 24px;

    border-radius:50%;

    background:#1565C0;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

}

.featured-card h3{

    font-size:2rem;

    margin-bottom:20px;

    color:#1f2937;

    font-weight:700;

}

.featured-card p{

    max-width:700px;

    margin:0 auto 18px;

    color:#6b7280;

    line-height:1.9;

    font-size:1.05rem;

}

.featured-card p:last-child{

    margin-bottom:0;

}

/*======================================
  WHY FEATURE TILES
======================================*/

.why-grid{

    display:grid;

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

    gap:28px;

    max-width:900px;

    margin:55px auto 0;

}

.why-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:20px;

    padding:34px 30px;

    text-align:center;

    box-shadow:0 10px 30px rgba(15,23,42,.06);

    transition:all .35s ease;

}

.why-card:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(15,23,42,.10);

}

.why-icon{

    width:54px;

    height:54px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#1565C0;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

.why-card h4{

    font-size:1.3rem;

    color:#1f2937;

    margin-bottom:14px;

    font-weight:700;

}

.why-card p{

    color:#6b7280;

    line-height:1.75;

    margin:0;

    font-size:.98rem;

}

/*======================================
  INDUSTRIES WE SERVE
======================================*/

.industries{
    padding:85px 0 50px;
    background:#ffffff;
}

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

.industries .section-heading{
    max-width:760px;
    margin:0 auto 50px;
    text-align:center;
}

.industries-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(380px,1fr));
    justify-content:center;
    gap:60px 50px;
}

.industry-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    text-align:center;

    width:100%;
    padding:20px;
    border-radius:18px;

    cursor:pointer;

    transition:background .35s ease;
}

.industry-icon{
    width:48px;
    height:48px;
    border:2px solid #1565C0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
}

.industry-icon i{
    font-size:18px;
    color:#1565C0;
}

.industry-item h3{
    font-size:25px;
    font-weight:700;
    color:#1f2937;
    line-height:1.4;
    margin:0;
}

.industry-description{

    max-width:320px;

    margin-top:16px;

    font-size:15px;
    line-height:1.7;
    color:#6b7280;

    max-height:0;
    overflow:hidden;

    opacity:0;

    transition:
        opacity .30s ease,
        max-height .30s ease;
}

/*======================================
  INDUSTRY HOVER EFFECTS
======================================*/

.industry-item{
    cursor:pointer;
}
.industry-item:hover{
    background:#f8fbff;
}
.industry-item:hover .industry-icon{
    background:#1565C0;
    border-color:#1565C0;
    transition:all .35s ease;
}

.industry-item:hover .industry-icon i{
    color:#ffffff;
    transition:all .35s ease;
}

.industry-item:hover h3{
    color:#1565C0;
    transition:all .35s ease;
}

.industry-item:hover .industry-description{

    opacity:1;
    max-height:80px;
}

/*======================================
  CALL TO ACTION
======================================*/

.cta-section{

    padding:90px 0 90px;

    background:#ffffff;

}

.cta-section .container{

    max-width:1200px;

    margin:0 auto;

    padding:0 20px;

}

.cta-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;

}

.cta-content{

    flex:1;

    text-align:left;

}

.cta-image{

    flex:1;

    display:flex;

    justify-content:center;

    align-items:center;

}

.cta-image img{

    width:100%;

    max-width:620px;   /* keep 620 for now */

    height:auto;

    display:block;

    transform: translateY(-12px);

}

.cta-label{

    display:inline-block;

    margin-bottom:18px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    color:#1565C0;

}

.cta-content h2{

    font-size:50px;

    line-height:1.15;

    font-weight:800;

    color:#1f2937;

    margin-bottom:24px;

}

.cta-content p{

    max-width:560px;

    margin-bottom:34px;

    font-size:18px;

    line-height:1.9;

    color:#6b7280;

}

.cta-content .btn-primary{

    padding:16px 34px;

}

.cta-note{

    margin-top:28px;

}

.cta-note strong{

    display:block;

    margin-bottom:8px;

    font-size:17px;

    color:#1f2937;

}

.cta-note span{

    display:block;

    color:#6b7280;

    line-height:1.8;

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

.site-footer{
    background:#0D2F6F;
    color:#ffffff;
    margin-top:40px;
}

.site-footer .container{
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    padding:100px 0 70px;
    align-items:start;
}
.footer-about{
    padding-top:20px;
}

.footer-about .custom-logo{

    max-height:72px;

    width:auto;

    height:auto;

    display:block;

    background:#ffffff;

    padding:16px 18px;

    border-radius:12px;

    box-shadow:0 6px 18px rgba(0,0,0,.12);

}
.footer-about .custom-logo-link{

    display:inline-block;

}

.footer-about .custom-logo{

    vertical-align:middle;

}

.footer-about p{
    color:#cbd5e1;
    line-height:1.9;
    margin:28px 0;
    max-width:340px;
}

.footer-column h4{

    color:#fff;
    font-size:20px;
    margin-top:35px;
    margin-bottom:24px;
}

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

.footer-column li{
    margin-bottom:16px;
    color:#cbd5e1;
}

.footer-column a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.footer-column a:hover{
    color:#ffffff;
}

.footer-social{
    display:flex;
    gap:16px;
}

.footer-social a{

    width:42px;

    height:42px;

    border-radius:50%;

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

    display:flex;

    align-items:center;

    justify-content:center;

    color:#ffffff;

    text-decoration:none;

    font-size:18px;

    transition:all .30s ease;

}

.footer-social a:hover{

    transform:translateY(-3px);

}

.footer-social .facebook:hover{

    background:#1877F2;

}

.footer-social .instagram:hover{

    background:#E4405F;

}

.footer-social .youtube:hover{

    background:#FF0000;

}

.footer-social .tiktok:hover{

    background:#111111;

}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.10);
}

.footer-bottom .container{

    padding:28px 20px;

}

.footer-bottom p{
    margin:0;
    color:#cbd5e1;
}
.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
}

.footer-contact i{
    width:20px;
    color:#ffffff;
    font-size:16px;
    margin-top:3px;
    flex-shrink:0;
}

.footer-contact .whatsapp-icon{
    color:#25D366;
    margin-left:-6px;
}

.footer-contact a{
    color:#d9e2f2;
    text-decoration:none;
    transition:.3s;
}

.footer-contact a:hover{
    color:#ffffff;
}

.footer-contact span{
    color:#d9e2f2;
    line-height:1.7;
}
.footer-bottom{

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

}

.footer-bottom-inner{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}

.footer-bottom p{

    margin:0;

}

.footer-legal{

    display:flex;

    align-items:center;

    gap:12px;

}

.footer-legal span{

    color:rgba(255,255,255,.40);

}

.footer-legal a{

    color:#d9e2f2;

    text-decoration:none;

    transition:.3s;

}

.footer-legal a:hover{

    color:#4DA3FF;

}
/* ======================================================
   PLANET 360 — HEADER DROPDOWNS
====================================================== */

/* Main navigation row */
.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Main navigation items */
.main-nav > ul > li {
    position: relative;
    list-style: none;
}


/* ======================================================
   SERVICES DROPDOWN
====================================================== */

.main-nav > ul > li.menu-item-has-children > .sub-menu {
    display: none;

    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;

    width: 250px;
    min-width: 250px;

    margin: 0;
    padding: 6px 0;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;

    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);

    list-style: none;
}

/* Show Services dropdown */
.main-nav > ul > li.menu-item-has-children:hover > .sub-menu {
    display: block;
}


/* ======================================================
   FIRST-LEVEL DROPDOWN ITEMS
====================================================== */

.main-nav > ul > li > .sub-menu > li {
    position: relative;

    display: block;
    width: 100%;

    margin: 0;
    padding: 0;
}

.main-nav > ul > li > .sub-menu > li > a {
    display: block;

    width: 100%;
    box-sizing: border-box;

    padding: 11px 16px;

    color: #1f2937;
    background: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;

    white-space: nowrap;
}

/* First-level hover */
.main-nav > ul > li > .sub-menu > li > a:hover {
    color: #1565C0;
    background: #f7faff;
}


/* ======================================================
   REMOVE MAIN NAV UNDERLINE FROM DROPDOWNS
====================================================== */

.main-nav .sub-menu a::after {
    content: none !important;

    position: static !important;

    left: auto !important;
    bottom: auto !important;

    width: auto !important;
    height: auto !important;

    background: none !important;

    border-radius: 0 !important;

    transform: none !important;
}


/* ======================================================
   SERVICES ARROW
====================================================== */

.main-nav > ul > li.menu-item-has-children > a::before {
    content: "▾";

    display: inline-block;

    margin-right: 7px;

    color: #64748b;

    font-size: 14px;
    line-height: 1;

    vertical-align: middle;
}


/* ======================================================
   TAX ADVISORY SERVICES — SECOND LEVEL
====================================================== */

.main-nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
    display: none;

    position: absolute;

    top: -6px;
    left: calc(100% - 1px);

    z-index: 100000;

    width: 285px;
    min-width: 285px;

    margin: 0;
    padding: 6px 0;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;

    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.10);

    list-style: none;
}

/* Show Tax Advisory submenu */
.main-nav > ul > li > .sub-menu > li.menu-item-has-children:hover > .sub-menu {
    display: block;
}


/* ======================================================
   SECOND-LEVEL ITEMS
====================================================== */

.main-nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu > li {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;
}

.main-nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu > li > a {
    display: block;

    width: 100%;
    box-sizing: border-box;

    padding: 11px 16px;

    color: #1f2937;
    background: #ffffff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;

    white-space: nowrap;
}

.main-nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu > li > a:hover {
    color: #1565C0;
    background: #f7faff;
}


/* ======================================================
   TAX ADVISORY SERVICES ARROW
====================================================== */

.main-nav > ul > li > .sub-menu > li.menu-item-has-children > a::after {
    content: "›" !important;

    position: absolute !important;

    top: 50% !important;
    right: 15px !important;
    left: auto !important;
    bottom: auto !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;

    background: none !important;

    border-radius: 0 !important;

    color: #64748b;

    font-size: 18px;
    line-height: 1;

    transform: translateY(-50%) !important;

    display: block !important;
}

/* Make room for Tax Advisory arrow */
.main-nav > ul > li > .sub-menu > li.menu-item-has-children > a {
    position: relative;

    padding-right: 38px;
}
/* ======================================
   FAQ PAGE
====================================== */

body.page-id-1593 > p.wp-block-paragraph {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}
/* ======================================
   FAQ ACCORDION
====================================== */

.planet-faq {
    max-width: 1200px;
    margin: 35px auto 80px;
    padding: 0 20px;
    box-sizing: border-box;
}

.planet-faq details {
    border: 1px solid #e2e6ec;
    border-radius: 8px;
    margin-bottom: 14px;
    background: #ffffff;
    overflow: hidden;
}

.planet-faq summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 20px 55px 20px 22px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2a3a;
    line-height: 1.5;
}

.planet-faq summary::-webkit-details-marker {
    display: none;
}

.planet-faq summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: #1768c4;
}

.planet-faq details[open] summary::after {
    content: "−";
}

.planet-faq details[open] summary {
    border-bottom: 1px solid #e2e6ec;
}

.planet-faq-answer {
    padding: 20px 22px 22px;
    color: #596579;
    font-size: 16px;
    line-height: 1.8;
}

.planet-faq-answer p {
    margin: 0 0 14px;
}

.planet-faq-answer p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .planet-faq {
        padding: 0 15px;
        margin-top: 25px;
        margin-bottom: 60px;
    }

    .planet-faq summary {
        padding: 17px 48px 17px 17px;
        font-size: 16px;
    }

    .planet-faq-answer {
        padding: 17px;
        font-size: 15px;
    }
}
/* FAQ page heading */
body.page-id-1593 > h1.wp-block-heading {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 48px;
    line-height: 1.15;
}

@media (max-width: 768px) {
    body.page-id-1593 > h1.wp-block-heading {
        font-size: 36px;
    }
}
/* ==========================================
   BOOK CONSULTATION PAGE
========================================== */

.planet-consultation-section {
    padding: 70px 20px 90px;
    background: #ffffff;
}

.planet-consultation-container {
    max-width: 900px;
    margin: 0 auto;
}

.planet-consultation-heading {
    margin-bottom: 45px;
}

.planet-consultation-heading h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f2a3a;
}

.planet-consultation-heading p {
    max-width: 720px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #596579;
}

.planet-consultation-form {
    width: 100%;
}

.planet-form-group {
    margin-bottom: 27px;
}

.planet-form-group > label {
    display: block;
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2a3a;
}

.planet-form-group > label span {
    color: #1768c4;
}

.planet-form-group input[type="text"],
.planet-form-group input[type="email"],
.planet-form-group input[type="tel"],
.planet-form-group select,
.planet-form-group textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dce2e9;
    border-radius: 7px;
    background: #ffffff;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    color: #1f2a3a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.planet-form-group input[type="text"]:focus,
.planet-form-group input[type="email"]:focus,
.planet-form-group input[type="tel"]:focus,
.planet-form-group select:focus,
.planet-form-group textarea:focus {
    border-color: #1768c4;
    box-shadow: 0 0 0 3px rgba(23, 104, 196, 0.08);
}

.planet-form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.planet-form-group input::placeholder,
.planet-form-group textarea::placeholder {
    color: #8a94a3;
}

.planet-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.planet-radio-option {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 13px 17px;
    border: 1px solid #dce2e9;
    border-radius: 7px;
    background: #ffffff;
    cursor: pointer;
    color: #1f2a3a;
    font-size: 15px;
    line-height: 1.4;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.planet-radio-option:hover {
    border-color: #1768c4;
}

.planet-radio-option input {
    margin: 0;
    accent-color: #1768c4;
}

.planet-form-notice {
    margin-top: -5px;
    margin-bottom: 28px;
    padding: 14px 16px;
    border-left: 3px solid #1768c4;
    background: #f7f9fc;
    color: #596579;
    font-size: 14px;
    line-height: 1.6;
}

.planet-form-submit button {
    display: inline-block;
    border: none;
    border-radius: 30px;
    padding: 14px 30px;
    background: #1768c4;
    color: #ffffff;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.planet-form-submit button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(23, 104, 196, 0.18);
}

@media (max-width: 768px) {

    .planet-consultation-section {
        padding: 50px 16px 70px;
    }

    .planet-consultation-heading {
        margin-bottom: 35px;
    }

    .planet-consultation-heading h1 {
        font-size: 36px;
    }

    .planet-consultation-heading p {
        font-size: 16px;
    }

    .planet-radio-group {
        flex-direction: column;
        gap: 9px;
    }

    .planet-radio-option {
        width: 100%;
        box-sizing: border-box;
    }

}
/* Consultation form messages and anti-spam field */

.planet-form-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.planet-consultation-success {
    margin-bottom: 30px;
    padding: 18px 20px;
    border-left: 4px solid #1768c4;
    background: #f5f9ff;
    color: #1f2a3a;
    font-size: 16px;
    line-height: 1.6;
}

.planet-consultation-error {
    margin-bottom: 30px;
    padding: 18px 20px;
    border-left: 4px solid #c0392b;
    background: #fff7f6;
    color: #1f2a3a;
    font-size: 16px;
    line-height: 1.6;
}
/* ======================================
   PRIVACY POLICY PAGE
====================================== */

body.page-id-1615 > h1.wp-block-heading {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 48px;
    line-height: 1.15;
}

body.page-id-1615 p.wp-block-paragraph {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

body.page-id-1615 > h2.wp-block-heading {
    max-width: 1200px;
    margin: 42px auto 14px;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 32px;
    line-height: 1.25;
}

body.page-id-1615 > ul.wp-block-list {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding-left: 48px;
    padding-right: 20px;
    box-sizing: border-box;
}

body.page-id-1615 p.wp-block-paragraph {
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: left;
}
    
@media (max-width: 768px) {
    body.page-id-1615 > h1.wp-block-heading {
        font-size: 36px;
    }

    body.page-id-1615 > h2.wp-block-heading {
        font-size: 27px;
    }

    body.page-id-1615 > p.wp-block-paragraph {
        padding: 0 15px;
    }

    body.page-id-1615 > ul.wp-block-list {
        padding-left: 40px;
        padding-right: 15px;
    }
}
/* ======================================
   TERMS & CONDITIONS PAGE
====================================== */

body.page-id-1626 > h1.wp-block-heading {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 48px;
    line-height: 1.15;
}

body.page-id-1626 p.wp-block-paragraph {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: left;
}

body.page-id-1626 > h2.wp-block-heading {
    max-width: 1200px;
    margin: 42px auto 14px;
    padding: 0 20px;
    box-sizing: border-box;
    font-size: 32px;
    line-height: 1.25;
}

body.page-id-1626 > ul.wp-block-list {
    max-width: 1200px;
    margin: 0 auto 20px;
    padding-left: 48px;
    padding-right: 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    body.page-id-1626 > h1.wp-block-heading {
        font-size: 36px;
    }

    body.page-id-1626 > h2.wp-block-heading {
        font-size: 27px;
    }

    body.page-id-1626 > p.wp-block-paragraph {
        padding: 0 15px;
    }

    body.page-id-1626 > ul.wp-block-list {
        padding-left: 40px;
        padding-right: 15px;
    }
}
/* ======================================
   SALARY INCOME TAX CALCULATOR PAGE
====================================== */

body.page-id-1631 .planet-tax-calculator {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 20px 90px;
    box-sizing: border-box;
    color: #1f2a3a;
}


/* ======================================
   CALCULATOR HEADER
====================================== */

body.page-id-1631 .planet-tax-calculator-header {
    margin-bottom: 45px;
}

body.page-id-1631 .planet-tax-calculator-header h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f2a3a;
}

body.page-id-1631 .planet-tax-calculator-header p {
    max-width: 720px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #596579;
}


/* ======================================
   INPUT AREA
====================================== */

body.page-id-1631 .planet-tax-form {
    width: 100%;
}

body.page-id-1631 .planet-tax-field {
    margin-bottom: 27px;
}

body.page-id-1631 .planet-tax-field label {
    display: block;
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2a3a;
}

body.page-id-1631 .planet-tax-field select,
body.page-id-1631 .planet-tax-field input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dce2e9;
    border-radius: 7px;
    background: #ffffff;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    color: #1f2a3a;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

body.page-id-1631 .planet-tax-field select:focus,
body.page-id-1631 .planet-tax-field input:focus {
    border-color: #1768c4;
    box-shadow: 0 0 0 3px rgba(23, 104, 196, .08);
}

body.page-id-1631 .planet-tax-input-wrap {
    position: relative;
}

body.page-id-1631 .planet-tax-input-wrap > span {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #596579;
    font-size: 16px;
    font-weight: 500;
    pointer-events: none;
}

body.page-id-1631 .planet-tax-input-wrap input {
    padding-left: 48px;
}


/* ======================================
   BUTTONS
====================================== */

body.page-id-1631 #planet-tax-calculate,
body.page-id-1631 #planet-tax-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 14px 30px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

body.page-id-1631 #planet-tax-calculate {
    border: 2px solid #1768c4;
    background: #1768c4;
    color: #ffffff;
}

body.page-id-1631 #planet-tax-calculate:hover {
    background: #0D2F6F;
    border-color: #0D2F6F;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(23, 104, 196, .18);
}

body.page-id-1631 #planet-tax-reset {
    margin-left: 10px;
    border: 2px solid #1768c4;
    background: #ffffff;
    color: #1768c4;
}

body.page-id-1631 #planet-tax-reset:hover {
    background: #f7faff;
    transform: translateY(-1px);
}


/* ======================================
   ERROR MESSAGE
====================================== */

body.page-id-1631 .planet-tax-error {
    margin-top: 25px;
    padding: 15px 18px;
    border-left: 4px solid #c0392b;
    border-radius: 4px;
    background: #fff7f6;
    color: #1f2a3a;
    font-size: 15px;
    line-height: 1.6;
}


/* ======================================
   RESULTS SECTION
====================================== */

body.page-id-1631 .planet-tax-results {
    margin-top: 55px;
    padding-top: 50px;
    border-top: 1px solid #e5e7eb;
}

body.page-id-1631 .planet-tax-results-heading {
    margin-bottom: 28px;
}

body.page-id-1631 .planet-tax-results-heading h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #1f2a3a;
}


/* ======================================
   RESULT CARDS
====================================== */

body.page-id-1631 .planet-tax-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

body.page-id-1631 .planet-tax-result-card {
    padding: 24px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}

body.page-id-1631 .planet-tax-result-card span {
    display: block;
    margin-bottom: 9px;
    color: #596579;
    font-size: 14px;
    line-height: 1.5;
}

body.page-id-1631 .planet-tax-result-card strong {
    display: block;
    color: #1f2a3a;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}


/* Highlight important results */

body.page-id-1631 .planet-tax-result-card:nth-child(2),
body.page-id-1631 .planet-tax-result-card:nth-child(3) {
    border-color: #d7e7fa;
    background: #f8fbff;
}

body.page-id-1631 .planet-tax-result-card:nth-child(2) strong,
body.page-id-1631 .planet-tax-result-card:nth-child(3) strong {
    color: #1565C0;
    font-size: 27px;
}


/* ======================================
   EFFECTIVE TAX RATE
====================================== */

body.page-id-1631 .planet-tax-effective-rate {
    margin-top: 18px;
    padding: 23px 24px;
    border-radius: 12px;
    background: #0D2F6F;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

body.page-id-1631 .planet-tax-effective-rate span {
    font-size: 16px;
    font-weight: 600;
}

body.page-id-1631 .planet-tax-effective-rate strong {
    font-size: 25px;
    font-weight: 700;
}


/* ======================================
   TAX CALCULATION DETAILS
====================================== */

body.page-id-1631 .planet-tax-calculation-details {
    margin-top: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

body.page-id-1631 .planet-tax-calculation-details summary {
    padding: 19px 22px;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    color: #1f2a3a;
}

body.page-id-1631 .planet-tax-calculation-details summary::-webkit-details-marker {
    display: none;
}

body.page-id-1631 .planet-tax-calculation-details summary::after {
    content: "+";
    float: right;
    color: #1768c4;
    font-size: 22px;
    line-height: 1;
}

body.page-id-1631 .planet-tax-calculation-details[open] summary::after {
    content: "−";
}

body.page-id-1631 #planet-tax-breakdown {
    border-top: 1px solid #e2e8f0;
}


/* ======================================
   BREAKDOWN
====================================== */

body.page-id-1631 .planet-tax-breakdown-year {
    padding: 18px 22px;
    background: #f7f9fc;
    color: #596579;
    font-size: 15px;
}

body.page-id-1631 .planet-tax-breakdown-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #edf0f4;
}

body.page-id-1631 .planet-tax-breakdown-info strong {
    display: block;
    margin-bottom: 4px;
    color: #1f2a3a;
    font-size: 15px;
}

body.page-id-1631 .planet-tax-breakdown-info span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

body.page-id-1631 .planet-tax-breakdown-tax {
    color: #1565C0;
    font-size: 16px;
    font-weight: 700;
    text-align: right;
}

body.page-id-1631 .planet-tax-breakdown-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    background: #f8fbff;
}

body.page-id-1631 .planet-tax-breakdown-total span {
    color: #1f2a3a;
    font-weight: 600;
}

body.page-id-1631 .planet-tax-breakdown-total strong {
    color: #1565C0;
    font-size: 19px;
}


/* ======================================
   DISCLAIMER
====================================== */

body.page-id-1631 .planet-tax-disclaimer {
    margin-top: 42px;
    padding: 22px 24px;
    border-left: 4px solid #1768c4;
    background: #f7f9fc;
    color: #596579;
    font-size: 14px;
    line-height: 1.7;
}

body.page-id-1631 .planet-tax-disclaimer strong {
    color: #1f2a3a;
}

body.page-id-1631 .planet-tax-disclaimer p {
    margin: 0 0 12px;
}

body.page-id-1631 .planet-tax-disclaimer p:last-child {
    margin-bottom: 0;
}


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

@media (max-width: 768px) {

    body.page-id-1631 .planet-tax-calculator {
        padding: 50px 16px 70px;
    }

    body.page-id-1631 .planet-tax-calculator-header {
        margin-bottom: 35px;
    }

    body.page-id-1631 .planet-tax-calculator-header h1 {
        font-size: 36px;
    }

    body.page-id-1631 .planet-tax-calculator-header p {
        font-size: 16px;
    }

    body.page-id-1631 .planet-tax-result-grid {
        grid-template-columns: 1fr;
    }

    body.page-id-1631 .planet-tax-result-card:nth-child(2) strong,
    body.page-id-1631 .planet-tax-result-card:nth-child(3) strong {
        font-size: 24px;
    }

    body.page-id-1631 .planet-tax-effective-rate {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    body.page-id-1631 .planet-tax-breakdown-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.page-id-1631 .planet-tax-breakdown-tax {
        text-align: left;
    }

    body.page-id-1631 #planet-tax-reset {
        margin-left: 6px;
    }
}
/* ======================================
   BUSINESS INCOME TAX CALCULATOR PAGE
====================================== */

body.page-id-1639 .planet-business-tax-calculator {
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 20px 90px;
    box-sizing: border-box;
    color: #1f2a3a;
}


/* ======================================
   CALCULATOR HEADER
====================================== */

body.page-id-1639 .planet-business-tax-calculator-header {
    margin-bottom: 45px;
}

body.page-id-1639 .planet-business-tax-calculator-header h1 {
    margin: 0 0 18px;
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #1f2a3a;
}

body.page-id-1639 .planet-business-tax-calculator-header p {
    max-width: 720px;
    margin: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #596579;
}


/* ======================================
   INPUT AREA
====================================== */

body.page-id-1639 .planet-business-tax-form {
    width: 100%;
}

body.page-id-1639 .planet-business-tax-field {
    margin-bottom: 27px;
}

body.page-id-1639 .planet-business-tax-field label {
    display: block;
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: 600;
    color: #1f2a3a;
}

body.page-id-1639 .planet-business-tax-field select,
body.page-id-1639 .planet-business-tax-field input {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dce2e9;
    border-radius: 7px;
    background: #ffffff;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.5;
    color: #1f2a3a;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

body.page-id-1639 .planet-business-tax-field select:focus,
body.page-id-1639 .planet-business-tax-field input:focus {
    border-color: #1768c4;
    box-shadow: 0 0 0 3px rgba(23, 104, 196, .08);
}

body.page-id-1639 .planet-business-tax-input-wrap {
    position: relative;
}

body.page-id-1639 .planet-business-tax-input-wrap > span {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #596579;
    font-size: 16px;
    font-weight: 500;
    pointer-events: none;
}

body.page-id-1639 .planet-business-tax-input-wrap input {
    padding-left: 48px;
}


/* ======================================
   BUTTONS
====================================== */

body.page-id-1639 #planet-business-tax-calculate,
body.page-id-1639 #planet-business-tax-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    padding: 14px 30px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .25s ease;
}

body.page-id-1639 #planet-business-tax-calculate {
    border: 2px solid #1768c4;
    background: #1768c4;
    color: #ffffff;
}

body.page-id-1639 #planet-business-tax-calculate:hover {
    background: #0D2F6F;
    border-color: #0D2F6F;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(23, 104, 196, .18);
}

body.page-id-1639 #planet-business-tax-reset {
    margin-left: 10px;
    border: 2px solid #1768c4;
    background: #ffffff;
    color: #1768c4;
}

body.page-id-1639 #planet-business-tax-reset:hover {
    background: #f7faff;
    transform: translateY(-1px);
}


/* ======================================
   ERROR MESSAGE
====================================== */

body.page-id-1639 .planet-business-tax-error {
    margin-top: 25px;
    padding: 15px 18px;
    border-left: 4px solid #c0392b;
    border-radius: 4px;
    background: #fff7f6;
    color: #1f2a3a;
    font-size: 15px;
    line-height: 1.6;
}


/* ======================================
   RESULTS SECTION
====================================== */

body.page-id-1639 .planet-business-tax-results {
    margin-top: 55px;
    padding-top: 50px;
    border-top: 1px solid #e5e7eb;
}

body.page-id-1639 .planet-business-tax-results-heading {
    margin-bottom: 28px;
}

body.page-id-1639 .planet-business-tax-results-heading h2 {
    margin: 0;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 700;
    color: #1f2a3a;
}


/* ======================================
   RESULT CARDS
====================================== */

body.page-id-1639 .planet-business-tax-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

body.page-id-1639 .planet-business-tax-result-card {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}

body.page-id-1639 .planet-business-tax-result-card span {
    display: block;
    margin-bottom: 9px;
    color: #596579;
    font-size: 14px;
    line-height: 1.5;
}

body.page-id-1639 .planet-business-tax-result-card strong {
    display: block;
    color: #1f2a3a;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

body.page-id-1639 .planet-business-tax-result-card:nth-child(2),
body.page-id-1639 .planet-business-tax-result-card:nth-child(3) {
    border-color: #d7e7fa;
    background: #f8fbff;
}

body.page-id-1639 .planet-business-tax-result-card:nth-child(2) strong,
body.page-id-1639 .planet-business-tax-result-card:nth-child(3) strong {
    color: #1565C0;
    font-size: 27px;
}


/* ======================================
   EFFECTIVE TAX RATE
====================================== */

body.page-id-1639 .planet-business-tax-effective-rate {
    margin-top: 18px;
    padding: 23px 24px;
    border-radius: 12px;
    background: #0D2F6F;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

body.page-id-1639 .planet-business-tax-effective-rate span {
    font-size: 16px;
    font-weight: 600;
}

body.page-id-1639 .planet-business-tax-effective-rate strong {
    font-size: 25px;
    font-weight: 700;
}


/* ======================================
   TAX CALCULATION DETAILS
====================================== */

body.page-id-1639 .planet-business-tax-calculation-details {
    margin-top: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

body.page-id-1639 .planet-business-tax-calculation-details summary {
    padding: 19px 22px;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 600;
    color: #1f2a3a;
}

body.page-id-1639 .planet-business-tax-calculation-details summary::-webkit-details-marker {
    display: none;
}

body.page-id-1639 .planet-business-tax-calculation-details summary::after {
    content: "+";
    float: right;
    color: #1768c4;
    font-size: 22px;
    line-height: 1;
}

body.page-id-1639 .planet-business-tax-calculation-details[open] summary::after {
    content: "−";
}

body.page-id-1639 #planet-business-tax-breakdown {
    border-top: 1px solid #e2e8f0;
}


/* ======================================
   BREAKDOWN
====================================== */

body.page-id-1639 .planet-business-tax-breakdown-year {
    padding: 18px 22px;
    background: #f7f9fc;
    color: #596579;
    font-size: 15px;
}

body.page-id-1639 .planet-business-tax-breakdown-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #edf0f4;
}

body.page-id-1639 .planet-business-tax-breakdown-info strong {
    display: block;
    margin-bottom: 4px;
    color: #1f2a3a;
    font-size: 15px;
}

body.page-id-1639 .planet-business-tax-breakdown-info span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
}

body.page-id-1639 .planet-business-tax-breakdown-tax {
    color: #1565C0;
    font-size: 16px;
    font-weight: 700;
    text-align: right;
}

body.page-id-1639 .planet-business-tax-breakdown-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    background: #f8fbff;
}

body.page-id-1639 .planet-business-tax-breakdown-total span {
    color: #1f2a3a;
    font-weight: 600;
}

body.page-id-1639 .planet-business-tax-breakdown-total strong {
    color: #1565C0;
    font-size: 19px;
}


/* ======================================
   DISCLAIMER
====================================== */

body.page-id-1639 .planet-business-tax-disclaimer {
    margin-top: 42px;
    padding: 22px 24px;
    border-left: 4px solid #1768c4;
    background: #f7f9fc;
    color: #596579;
    font-size: 14px;
    line-height: 1.7;
}

body.page-id-1639 .planet-business-tax-disclaimer strong {
    color: #1f2a3a;
}

body.page-id-1639 .planet-business-tax-disclaimer p {
    margin: 0 0 12px;
}

body.page-id-1639 .planet-business-tax-disclaimer p:last-child {
    margin-bottom: 0;
}


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

@media (max-width: 768px) {

    body.page-id-1639 .planet-business-tax-calculator {
        padding: 50px 16px 70px;
    }

    body.page-id-1639 .planet-business-tax-calculator-header {
        margin-bottom: 35px;
    }

    body.page-id-1639 .planet-business-tax-calculator-header h1 {
        font-size: 36px;
    }

    body.page-id-1639 .planet-business-tax-calculator-header p {
        font-size: 16px;
    }

    body.page-id-1639 .planet-business-tax-result-grid {
        grid-template-columns: 1fr;
    }

    body.page-id-1639 .planet-business-tax-result-card:nth-child(2) strong,
    body.page-id-1639 .planet-business-tax-result-card:nth-child(3) strong {
        font-size: 24px;
    }

    body.page-id-1639 .planet-business-tax-effective-rate {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    body.page-id-1639 .planet-business-tax-breakdown-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.page-id-1639 .planet-business-tax-breakdown-tax {
        text-align: left;
    }

    body.page-id-1639 #planet-business-tax-reset {
        margin-left: 6px;
    }
}


/* ======================================================
   PLANET 360 — MOBILE CONTROLS DEFAULT
   Hidden on desktop; enabled only by the mobile rules below.
====================================================== */

.mobile-menu-toggle,
.mobile-consultation-btn,
.mobile-submenu-toggle {
    display: none;
}

/* ======================================================
   PLANET 360 — MOBILE RESPONSIVE V2
   Strong mobile overrides for header + homepage.
   Desktop styles remain unchanged.
====================================================== */

@media screen and (max-width: 900px), screen and (hover: none) and (pointer: coarse) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* ---------- MOBILE HEADER ---------- */

    .site-header {
        width: 100%;
        position: sticky;
        top: 0;
        z-index: 99999;
    }

    .site-header .header-inner {
        width: 100% !important;
        max-width: none !important;
        min-height: 70px;
        height: auto !important;
        margin: 0 !important;
        padding: 8px 16px !important;
        box-sizing: border-box;
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .site-header .logo {
        display: block !important;
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 58px);
    }

    .site-header .logo img,
    .site-header .logo .custom-logo {
        display: block !important;
        width: auto !important;
        max-width: 175px !important;
        max-height: 58px !important;
        height: auto !important;
    }

    .site-header .desktop-consultation-btn {
        display: none !important;
    }

    .site-header .mobile-menu-toggle {
        display: flex !important;
        flex: 0 0 44px;
        width: 44px !important;
        height: 44px !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 1px solid #dce2e9 !important;
        border-radius: 8px !important;
        background: #ffffff !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
        position: relative;
        z-index: 100001;
    }

    .site-header .main-nav {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        margin: 0 !important;
        padding: 10px 16px 24px !important;
        box-sizing: border-box !important;
        background: #ffffff !important;
        border-top: 1px solid #e5e7eb !important;
        box-shadow: 0 14px 30px rgba(15, 23, 42, .10) !important;
    }

    .site-header .main-nav.mobile-nav-open {
        display: block !important;
    }

    .site-header .main-nav > ul,
    .site-header .main-nav > ul.nav-menu {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-header .main-nav > ul > li {
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        border-bottom: 1px solid #edf0f4;
    }

    .site-header .main-nav > ul > li > a {
        display: inline-flex !important;
        align-items: center;
        min-height: 50px;
        padding: 10px 4px !important;
        font-size: 16px !important;
        line-height: 1.4;
        white-space: normal;
    }

    .site-header .main-nav > ul > li > a::before,
    .site-header .main-nav > ul > li > a::after {
        content: none !important;
    }

    .site-header .main-nav .mobile-submenu-toggle {
        display: inline-flex !important;
    }

    .site-header .main-nav .sub-menu {
        box-sizing: border-box !important;
    }

    .site-header .mobile-consultation-btn {
        display: flex !important;
        width: 100% !important;
        margin: 18px 0 0 !important;
        box-sizing: border-box !important;
    }


    /* ---------- HOMEPAGE HERO ---------- */

    .hero {
        width: 100%;
        padding: 38px 0 45px !important;
        overflow: hidden;
    }

    .hero .container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 0 20px !important;
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 30px !important;
    }

    .hero-content {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
    }

    .hero-tagline {
        display: block;
        max-width: 100%;
        margin-bottom: 16px !important;
        font-size: 16px !important;
        line-height: 1.5 !important;
    }

    .hero h1 {
        max-width: 100%;
        margin: 0 0 20px !important;
        font-size: 39px !important;
        line-height: 1.12 !important;
        letter-spacing: -0.5px;
        overflow-wrap: normal;
    }

    .hero p {
        max-width: 100%;
        margin-bottom: 24px !important;
        font-size: 17px !important;
        line-height: 1.7 !important;
    }

    .hero-buttons {
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        margin-bottom: 24px !important;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100% !important;
        box-sizing: border-box;
    }

    .hero-features {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px !important;
        font-size: 15px !important;
        line-height: 1.5 !important;
    }

    .hero-image {
        order: 2;
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding-top: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-sizing: border-box;
    }

    .hero-image img {
        width: 100% !important;
        max-width: 340px !important;
        height: auto !important;
        margin: 0 auto !important;
    }


    /* ---------- COMMON SECTIONS ---------- */

    .services,
    .industries,
    .why-section,
    .cta-section {
        width: 100%;
        overflow: hidden;
    }

    .services .container,
    .industries .container,
    .cta-section .container,
    .why-section .container {
        width: 100% !important;
        max-width: none !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        box-sizing: border-box;
    }

    .section-heading,
    .industries .section-heading {
        max-width: 100% !important;
        margin-bottom: 40px !important;
    }

    .section-heading h2 {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }

    .section-heading p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .industries-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-card {
        padding: 28px 24px !important;
    }

    .cta-section .container {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .cta-content,
    .cta-image {
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
    }

    .cta-content h2 {
        font-size: 36px !important;
    }

    .cta-content p {
        font-size: 16px !important;
        line-height: 1.7 !important;
    }

    .cta-image img {
        max-width: 340px !important;
        margin: 0 auto !important;
        transform: none !important;
    }


    /* ---------- FOOTER ---------- */

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
        padding: 55px 0 45px !important;
    }

    .footer-about,
    .footer-column {
        padding-top: 0 !important;
    }

    .footer-column h4 {
        margin-top: 0 !important;
    }

}

@media screen and (max-width: 600px), screen and (hover: none) and (pointer: coarse) {

    .site-header .header-inner {
        min-height: 66px;
        padding: 7px 14px !important;
    }

    .site-header .logo img,
    .site-header .logo .custom-logo {
        max-width: 160px !important;
        max-height: 54px !important;
    }

    .site-header .mobile-menu-toggle {
        flex-basis: 42px;
        width: 42px !important;
        height: 42px !important;
    }

    .hero {
        padding-top: 32px !important;
    }

    .hero h1 {
        font-size: 35px !important;
    }

    .hero-image img {
        max-width: 310px !important;
    }

    .section-heading h2,
    .cta-content h2 {
        font-size: 32px !important;
    }

}
/* ======================================================
   PLANET 360 — MOBILE HEADER POLISH
====================================================== */

@media screen and (max-width: 900px), screen and (hover: none) and (pointer: coarse) {

    /* Hamburger button */
    .site-header .mobile-menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: column !important;
        gap: 5px !important;
    }

    /* Three hamburger lines */
    .site-header .mobile-menu-toggle span {
        display: block !important;
        width: 20px !important;
        height: 2px !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #1f2a3a !important;
        border-radius: 999px !important;
        transition: transform .25s ease, opacity .25s ease !important;
    }

    /* Hamburger → X */
    .site-header .mobile-menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .site-header .mobile-menu-toggle.is-open span:nth-child(2) {
        opacity: 0 !important;
    }

    .site-header .mobile-menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    /* Mobile submenu buttons */
    .site-header .main-nav .mobile-submenu-toggle {
        width: 38px !important;
        height: 38px !important;
        margin: 6px 0 6px 8px !important;
        padding: 0 !important;
        border: 1px solid #dce2e9 !important;
        border-radius: 8px !important;
        background: #ffffff !important;
        color: #1565C0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 38px !important;
        cursor: pointer;
        font: inherit;
    }

    .site-header .main-nav .mobile-submenu-toggle span {
        display: inline-block !important;
        line-height: 1 !important;
        transition: transform .2s ease !important;
    }

    .site-header .main-nav .menu-item-has-children.mobile-submenu-open > .mobile-submenu-toggle span {
        transform: rotate(180deg) !important;
    }

}
/* Mobile only: keep Tax Advisory submenu inside the menu */
@media screen and (max-width: 900px) {

    .site-header .main-nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;

        display: none !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;

        margin: 0 !important;
        padding: 4px 0 8px 18px !important;
        box-sizing: border-box !important;

        border: 0 !important;
        border-left: 1px solid #e5e7eb !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .site-header .main-nav > ul > li > .sub-menu > li.menu-item-has-children.mobile-submenu-open > .sub-menu {
        display: block !important;
    }

    .site-header .main-nav > ul > li > .sub-menu > li.menu-item-has-children > .sub-menu > li > a {
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 10px 12px !important;
        white-space: normal !important;
    }
}
/* ======================================================
   MOBILE — TAX ADVISORY ARROW POSITION
====================================================== */

@media screen and (max-width: 900px), screen and (hover: none) and (pointer: coarse) {

    /* Tax Advisory parent */
    .site-header .main-nav > ul > li > .sub-menu > li.menu-item-has-children {
        position: relative !important;
    }

    /* Remove the desktop-style > arrow */
    .site-header .main-nav > ul > li > .sub-menu > li.menu-item-has-children > a::after {
        content: none !important;
        display: none !important;
    }

    /* Put the REAL working toggle beside Tax Advisory Services */
    .site-header .main-nav > ul > li > .sub-menu > li.menu-item-has-children > .mobile-submenu-toggle {
        position: absolute !important;
        top: 6px !important;
        right: 8px !important;

        width: 38px !important;
        height: 38px !important;

        margin: 0 !important;
        padding: 0 !important;

        border: 1px solid #dce2e9 !important;
        border-radius: 8px !important;

        background: #ffffff !important;
        color: #1565C0 !important;

        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Make space for the arrow */
    .site-header .main-nav > ul > li > .sub-menu > li.menu-item-has-children > a {
        padding-right: 55px !important;
    }

}
/* ======================================================
   MOBILE — CLOSE SERVICES & CALCULATORS CORRECTLY
====================================================== */

@media screen and (max-width: 900px), screen and (hover: none) and (pointer: coarse) {

    /* Keep top-level dropdowns closed unless their real mobile toggle opens them */
    .site-header .main-nav > ul > li.menu-item-has-children > .sub-menu {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: none !important;
    }

    /* Open only while the toggle's JS class is present */
    .site-header .main-nav > ul > li.menu-item-has-children.mobile-submenu-open > .sub-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

}
/* ======================================================
   WHY PLANET 360 — MOBILE CARD FIX
   Only affects the four Why Planet 360 feature cards.
====================================================== */

@media screen and (max-width: 900px) {

    .why-planet .why-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 520px !important;
        margin: 40px auto 0 !important;
        gap: 22px !important;
        box-sizing: border-box;
    }

    .why-planet .why-card {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box;
    }

}
/* ======================================================
   HERO IMAGE — MOBILE
====================================================== */

@media screen and (max-width: 600px), screen and (hover: none) and (pointer: coarse) {

    .hero-image {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        overflow: visible !important;
        margin-top: -30px !important;
    }

    .hero-image img {
        width: 92% !important;
        max-width: 390px !important;
        height: auto !important;
        margin: 0 auto !important;
        transform: translateX(-75px) !important;
    }

}
/* ======================================================
   MOBILE — INDUSTRIES SECTION SPACING
   Only affects the homepage Industry section.
====================================================== */

@media screen and (max-width: 900px), screen and (hover: none) and (pointer: coarse) {

    /* Tighten the Industry list */
    .industries {
        padding-top: 55px !important;
        padding-bottom: 25px !important;
    }

    .industries-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .industry-item {
        padding: 10px 10px !important;
    }

    .industry-icon {
        margin-bottom: 10px !important;
    }

    .industry-item h3 {
        font-size: 21px !important;
        line-height: 1.3 !important;
    }

    /* Descriptions are intentionally hidden on mobile */
    .industry-description {
        display: none !important;
    }

    /* Reduce the excessive space before the CTA */
    .cta-section {
        padding-top: 45px !important;
    }

}
/* MOBILE — HEADER LOGO SIZE ONLY */
@media screen and (max-width: 600px), screen and (hover: none) and (pointer: coarse) {
    .site-header .logo img,
    .site-header .logo .custom-logo {
        max-width: 190px !important;
        max-height: 54px !important;
    }
}
/* MOBILE — FIXED HEADER */
@media screen and (max-width: 900px) {

    .site-header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99999 !important;
    }

    body {
        padding-top: 70px !important;
    }

}
/* ======================================================
   MOBILE — CTA IMAGE STACKING FIX
====================================================== */

@media screen and (max-width: 900px), screen and (hover: none) and (pointer: coarse) {

    .cta-wrapper {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        gap: 30px !important;
    }

}
/* Service Page Hero Image */
.service-hero .service-image {
    width: 100%;
    max-width: none;
}

.service-hero .service-image img {
    width: 115%;
    max-width: 780px;
    height: auto;
    display: block;
}