/*
 * Custom Styles for Rokko Landing Page
 * Built on Bootstrap 5.3.3
 */

/* ===========================
   Google Fonts - Shippori Mincho
   =========================== */

/*
.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
*/

/* ===========================
   CSS Variables - Base Styles
   =========================== */

:root {
    /* Text Colors */
    --text-standard: #231815;
    --text-light: #5f4b3d;
    --text-grey: #5f5f5f;
    --text-checklist: #3e3a39;
    
    /* Heading Colors */
    --heading-standard: #337d47;
    
    /* Brand Colors */
    --color-green-base: #c5e3d2;
    --color-green-light: #dff0e6;
    
    /* Transition */
    --transition-speed: 0.4s;
}

/* ===========================
   Global Styles
   =========================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Shippori Mincho', serif;
    line-height: 1.8;
    color: var(--text-standard);
    font-weight: 400;
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Shippori Mincho', serif;
    line-height: 1.6;
}

h1 {
    font-weight: 700;
}

h2 {
    color: var(--heading-standard);
    font-weight: 700;
}

h4 {
    font-weight: 500;
}

h5 {
    font-weight: 400;
}

p strong,
p b {
    color: var(--heading-standard);
}

/* ===========================
   Utility Classes
   =========================== */

.br-mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .br-mobile {
        display: block;
    }
}

/* ===========================
   1. Header
   =========================== */

.site-header {
    background-color: #fff;
}

.header-logo {
    max-width: 180px;
    height: auto;
    display: block;
}

.header-icon-link {
    display: inline-block;
    transition: opacity var(--transition-speed) ease;
}

.header-icon-link:hover {
    opacity: 0.7;
}

.header-icon {
    width: 45px;
    height: 45px;
    display: block;
}

@media (max-width: 767.98px) {
    .header-logo {
        max-width: 140px;
    }
    
    .header-icon {
        width: 35px;
        height: 35px;
    }
}

/* ===========================
   2. Main Title, Subtitle
   =========================== */

.main-titles {
    padding-top: 110px;
    padding-left: 130px;
    padding-right: 130px;
}

.main-titles-wrapper {
    display: flex;
}

@media (min-width: 768px) {
    .main-titles-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .main-titles {
        padding: 0;
    }
    
    .main-titles-wrapper {
        justify-content: center;
        align-items: flex-start;
        gap: 2rem;
        margin-top: 30px;
    }    
}

.main-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .main-title {
        order: 1;
    }
    
    .main-subtitle {
        order: 2;
    }
}

.main-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.8;
}

@media (max-width: 767.98px) {
    .main-title {
        font-size: 2rem;
        font-weight: 400;
        writing-mode: vertical-rl;
        text-orientation: upright;
        display: inline-block;
        margin: 0;
        text-align: end;
    }
    
    .main-subtitle {
        font-size: 1.1rem;
        font-weight: 300;
        writing-mode: vertical-rl;
        text-orientation: upright;
        display: inline-block;
        margin-top: 120px !important;
        z-index: 9999;
    }
}

/* ===========================
   3. Main Banner
   =========================== */

.main-banner {
    width: 100%;
}

.main-banner img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .main-banner img {
        margin-top: -100px;
    }    
}

/* ===========================
   4. Introduction
   =========================== */

.introduction {
    background-color: #fff;
    padding-top: 90px;
}

@media (max-width: 767.98px) {
    .introduction {
        padding-top: 50px;
    }
}

.section-heading {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--heading-standard);
    line-height: 1.6;
}

.section-subheading {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-standard);
    line-height: 1.8;
}

/* Checklist */
.checklist {
    margin-top: 3rem;
}

.checklist-row {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
}

.checklist-row-two {
    justify-content: space-between;
    align-items: flex-start;
}

.checklist-row-one {
    justify-content: center;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    max-width: 100%;
}

.checklist-row-two .checklist-item {
    max-width: calc(50% - 1rem);
}

.checklist-row-two .checklist-item:last-child {
    justify-content: flex-end;
}

.checklist-row-two .checklist-item:last-child .checklist-text {
    text-align: left;
}

.checklist-row-one .checklist-item {
    justify-content: center;
}

@media (max-width: 991.98px) {
    .checklist-row { 
        align-items: flex-start;
    }
}

.checklist-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.checklist-text {
    font-size: 1.6rem;
    color: var(--text-checklist);
    margin: 0;
    line-height: 1.8;
}

/* Custom Underline */
.underlined {
    position: relative;
    display: inline;
}

.underlined::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--color-green-base);
}

@media (max-width: 767.98px) {
    .section-heading {
        font-size: 1.5rem;
    }
    
    .section-subheading {
        font-size: 18px;
    }
    
    .checklist {
        margin-top: 2rem;
    }
    
    .checklist-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 0;
    }
    
    .checklist-row-two .checklist-item,
    .checklist-row-one .checklist-item {
        max-width: 100%;
    }
    
    .checklist-icon {
        width: 28px;
        height: 28px;
    }
    
    .checklist-text {
        font-size: 16px;
    }
}

/* ===========================
   5. Consult Block
   =========================== */

.consult-block {
    background-color: #fff;
    padding-top: 120px;
    padding-bottom: 130px;
}

@media (max-width: 767.98px) {
    .consult-block {
        padding-top: 55px;
        padding-bottom: 40px;
    }
}

.consult-heading {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--heading-standard);
    line-height: 1.6;
    position: relative;
    display: inline-block;
    padding-bottom: 0;
}

.consult-heading-underline {
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #68be8b, #337e47);
    margin: 10px auto 0;
}

.consult-text {
    font-size: 1.5rem;
    color: var(--text-standard);
    line-height: 2;
    margin-top: 2rem;
}

@media (max-width: 767.98px) {
    .consult-heading {
        font-size: 1.5rem;
    }
    
    .consult-text {
        font-size: 16px;
    }
}

/* ===========================
   6. Why So Difficult
   7. The Rokko Rules
   =========================== */

.why-difficult,
.rokko-rules {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.why-difficult {
    background-image: url('../img/bg-1.jpg');
}

.rokko-rules {
    background-image: url('../img/bg-2.jpg');
}

.section-color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(197, 227, 210, 0.5);
    z-index: 1;
}

.section-bg-overlay {
    position: relative;
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: stretch;
    z-index: 2;
}

@media (max-width: 767.98px) {
    .section-bg-overlay .container { 
        padding: 0px !important;
    }
}

.vertical-text {
    position: absolute;
    left: 0;
    top: 4rem;
    width: 120px;
    z-index: 10;
}

@media (max-width: 768px) {
    .vertical-text {
        display: none;
    }
}

.vertical-text-img {
    width: 75px;
    height: auto;
    max-height: 100%;
}

/* Inner Container - 65% width on desktop, 100% on mobile */
.inner-container {
    width: 65%;
    margin: 0 auto;
    height: 100%;
}

.content-block {
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 auto;
    padding: 3rem 4rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-heading {
    font-size: 2.1rem;
    font-weight: 700;
    color: #5f4b3d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-subheading {
    font-size: 1.4rem;
    font-weight: 500;
    color: #5f4b3d;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    padding: 1rem 0;
}

.rokko-rules-heading {
    text-align: left;
}

.content-text {
    font-size: 1.1rem;
    color: #5f4b3d;
    line-height: 2;
    margin-bottom: 0;
}

/* Custom List */
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.custom-list-item:last-child {
    margin-bottom: 0;
}

.list-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.list-text {
    font-size: 1.05rem;
    color: #3e3a39;
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    .why-difficult,
    .rokko-rules {
        min-height: 700px;
    }
    
    .section-bg-overlay {
        min-height: 700px;
    }
    
    .content-block {
        max-width: 100%;
    }
    
    .vertical-text {
        top: 3rem;
        width: 80px;
    }
    
    .vertical-text-img {
        width: 80px;
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .why-difficult,
    .rokko-rules {
        min-height: 600px;
    }
    
    .section-bg-overlay {
        min-height: 600px;
    }
    
    .inner-container {
        width: 100%;
    }
    
    .content-block {
        width: 100%;
        padding: 2rem 1.5rem;
        background-color: unset;
    }
    
    .content-heading {
        font-size: 1.4rem;
    }
    
    .content-subheading {
        font-size: 1.1rem;
    }
    
    .content-text {
        font-size: 0.95rem;
        background-color: rgba(255, 255, 255, 0.5);
        padding: 20px;
    }

    .custom-list {
        background-color: rgba(255, 255, 255, 0.5);
        padding: 20px;
    }
    
    .vertical-text {
        top: 2rem;
        left: -0.5rem;
        width: 60px;
    }
    
    .vertical-text-img {
        width: 60px;
        height: auto;
    }
    
    .list-icon {
        width: 26px;
        height: 26px;
    }
    
    .list-text {
        font-size: 0.95rem;
    }
}

/* ===========================
   8. Our Approach
   =========================== */

.our-approach {
    background-color: #fff;
    position: relative;
    padding-top: 145px;
    padding-bottom: 10px;
}

.approach-bg-text {
    position: absolute;
    left: calc(-50vw + 50% - 3px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 767.98px) {

    .our-approach {
        padding-top: 130px;
    }

    .approach-bg-text {
        top: -50%;
    }
}

.bg-text-img {
    height: 101px;
    width: auto;
}

/* Adjust for double-height SVGs */
.faq-bg-text .bg-text-img,
.corporate-bg-text .bg-text-img {
    height: 162px;
}

.approach-heading {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.approach-heading-underline {
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #68be8b, #337e47);
    margin: 10px auto 0;
}

/* Approach Content Blocks */
.approach-blocks {
    background-color: #fff;
}

.approach-block {
    margin-bottom: 4rem;
    overflow: hidden;
}

.approach-block-gradient-lr {
    background: linear-gradient(to right, #ffffff, #d6ecdf);
    padding-top: 50px;
    padding-bottom: 50px;
}

.approach-block-gradient-rl {
    background: linear-gradient(to left, #ffffff, #d6ecdf);
    padding-top: 50px;
    padding-bottom: 50px;
}

@media (max-width: 767.98px) {
    /* Make gradients vertical (white on top) on mobile */
    .approach-block-gradient-lr,
    .approach-block-gradient-rl {
        background: linear-gradient(to bottom, #ffffff, #d6ecdf);
        padding-top: 30px;
        padding-bottom: 30px;
    }

    /* Stack content vertically; ensure text side appears above images */
    .approach-block-gradient-lr .approach-content {
        flex-direction: column;
    }

    /* For RL blocks the DOM places image first, so reverse to put text on top */
    .approach-block-gradient-rl .approach-content {
        flex-direction: column-reverse;
    }
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 0;
}

.approach-text {
    flex: 1;
    padding: 3rem 2.5rem;
}

.approach-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-text {
    padding: 0 3rem;
}

.approach-title-wrapper {
    position: relative;
    margin-bottom: 1.25rem;
}

.approach-counter {
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    height: auto;
    z-index: 1;
}

.approach-block-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-standard);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    padding-top: 25px;
    padding-left: 40px;
}

.approach-block-subtitle {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-standard);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-block-text {
    font-size: 1.1rem;
    color: var(--text-standard);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.approach-block-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .bg-text-img {
        height: 84px;
    }
    
    /* Adjust for double-height SVGs on tablet */
    .faq-bg-text .bg-text-img,
    .corporate-bg-text .bg-text-img {
           height: 134px;
    }
}

@media (max-width: 767.98px) {
    .bg-text-img {
        height: 67px;
    }
    
    /* Adjust for double-height SVGs on mobile */
    .faq-bg-text .bg-text-img,
    .corporate-bg-text .bg-text-img {
           height: 107px;
    }
    
    .approach-heading {
        font-size: 1.5rem;
    }
    
    .approach-block {
        margin-bottom: 1.5rem;
    }
    
    .approach-content {
        flex-direction: column;
    }
    
    .approach-text {
        padding: 2rem 1.5rem;
    }
    
    .approach-counter {
        width: 80px;
        left: 0;
        top: 0;
    }
    
    .approach-block-title {
        padding-top: 40px;
        padding-left: 40px;
    }
    
    .approach-image {
        min-height: 250px;
    }
    
    .approach-block-title {
        font-size: 1.25rem;
    }
    
    .approach-block-subtitle {
        font-size: 1.1rem;
    }
    
    .approach-block-text {
        font-size: 0.95rem;
    }
}

/* ===========================
   9. Contact
   =========================== */

.contact-section {
    background-color: #fff;
    padding-top: 40px;
    padding-bottom: 120px;
}

.contact-bg-text {
    position: absolute;
    left: calc(-50vw + 50% - 3px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .contact-bg-text {
        top: -50%;
    }

    .contact-section { 
        padding-bottom: 60px;
    }
}

.contact-heading {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.contact-heading-underline {
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #68be8b, #337e47);
    margin: 10px auto 0;
}

/* Contact Icons */
.contact-icons {
    margin-top: 2rem;
    display: flex;
    gap: 60px;
}

.contact-icon-link-large {
    display: inline-block;
    transition: opacity var(--transition-speed) ease;
}

.contact-icon-link-large:hover {
    opacity: 0.7;
}

.contact-icon-large {
    width: 75px;
    height: 75px;
    display: block;
}

/* Business Hours */
.business-hours {
    font-size: 1.125rem;
    color: var(--text-standard);
    line-height: 1.8;
    margin-top: 1.5rem;
}

/* Contact Separator */
.contact-separator {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #337e47, #68be8b);
    margin-top: 3rem;
}

/* Contact Process */
.contact-process-wrapper {
    width: 100%;
    margin: 3rem auto 0;
}

.contact-process {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.process-arrow {
    flex-shrink: 0;
}

.arrow-image {
    width: auto;
    height: 300px;
    display: block;
}

.process-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

@media (max-width: 767.98px) {
    .process-content {
        min-height: auto !important;
    }
}

.process-step {
    margin-bottom: 0;
    width: 100%;
}

.process-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--heading-standard);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.free-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--heading-standard);
    border: 2px solid var(--heading-standard);
    padding: 0.25rem 0.75rem;
    border-radius: 0;
}

.process-note {
    font-size: 1.1rem;
    color: var(--text-standard);
    line-height: 1.9;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    /* Tablet adjustments - inner-container handles the width */
}

@media (max-width: 767.98px) {
    
    .contact-heading {
        font-size: 1.5rem;
        font-weight: 400;
    }
    
    .contact-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .business-hours {
        font-size: 1.1rem;
    }
    
    .contact-process {
        gap: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .arrow-image {
        height: 200px;
    }
    
    .process-step {
        margin-bottom: 1.5rem;
    }
    
    .process-title {
        font-size: 16px;
        flex-wrap: wrap;
    }
    
    .free-badge {
        font-size: 14px;
        padding: 0.2rem 0.6rem;
    }
    
    .process-note {
        font-size: 0.95rem;
    }
}

/* ===========================
   10. FAQ
   =========================== */

.faq-section {
    background-color: var(--color-green-light);
    padding-top: 140px;
    padding-bottom: 94px;
}

.faq-bg-text {
    position: absolute;
    left: calc(-50vw + 50% - 3px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .faq-bg-text {
        top: -50%;
    }

    .faq-section {
        padding-bottom: 35px;
    }
}

.faq-heading {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.faq-heading-underline {
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #68be8b, #337e47);
    margin: 10px auto 0;
}

/* FAQ Items */
.faq-wrapper {
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.faq-question {
    padding: 1.5rem 5rem 1.5rem 2rem;
    cursor: pointer;
    position: relative;
}

.faq-question-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-standard);
    line-height: 1.7;
    margin: 0;
}

.faq-toggle {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--color-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.faq-toggle:hover {
    background-color: var(--color-green-base);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-text {
    padding: 0 2rem 1.5rem 2rem;
    font-size: 1.1rem;
    color: var(--text-standard);
    line-height: 1.9;
    margin: 0;
}

.faq-answer-label {
    font-weight: 700;
    color: var(--heading-standard);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    content: '−';
}

@media (max-width: 991.98px) {
    /* Tablet adjustments - inner-container handles the width */
}

@media (max-width: 767.98px) {
    
    .faq-heading {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 4rem 1.25rem 1.5rem;
    }
    
    .faq-question-text {
        font-size: 1.1rem;
    }
    
    .faq-toggle {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
    }
    
    .faq-icon {
        font-size: 1.25rem;
    }
    
    .faq-answer-text {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* ===========================
   11. Message
   =========================== */

.message-section {
    background-color: #fff;
    padding-top: 145px;
    padding-bottom: 110px;
}

.message-bg-text {
    position: absolute;
    left: calc(-50vw + 50% - 3px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .message-bg-text {
        top: -50%;
    }

    .message-section {
        padding-bottom: 55px;
    }

}

.message-heading {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.message-heading-underline {
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #68be8b, #337e47);
    margin: 10px auto 0;
}

/* Message Content */
.message-wrapper {
    width: 100%;
    margin: 0 auto;
}

.message-profile {
    margin-bottom: 2rem;
}

.profile-image {
    max-width: 200px;
    height: auto;
    display: inline-block;
}

.profile-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-standard);
    line-height: 1.8;
    margin: 0;
}

.message-text {
    text-align: left;
}

.message-text p {
    font-size: 1.1rem;
    color: var(--text-standard);
    line-height: 2;
    margin-bottom: 1.5rem;
}

.message-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    /* Tablet adjustments - inner-container handles the width */
}

@media (max-width: 767.98px) {
    
    .message-heading {
        font-size: 1.5rem;
    }
    
    .profile-image {
        max-width: 150px;
    }
    
    .profile-name {
        font-size: 1.1rem;
    }
    
    .message-text p {
        font-size: 0.95rem;
    }
}

/* ===========================
   12. Corporate Information
   =========================== */

.corporate-section {
    background-color: #dff0e6;
    padding-top: 150px;
    padding-bottom: 95px;
}

.corporate-bg-text {
    position: absolute;
    left: calc(-50vw + 50% - 3px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .corporate-bg-text {
        top: -75%;
    }

    .corporate-section {
        padding-bottom: 55px;
    }

}

.corporate-heading {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.corporate-heading-underline {
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #68be8b, #337e47);
    margin: 10px auto 0;
}

/* Corporate Table */
.corporate-wrapper {
    width: 100%;
    margin: 0 auto;
}

.corporate-table {
    width: 100%;
    border-collapse: collapse;
    border-bottom: 1px solid #231815;
}

.corporate-table tbody tr {
    border-bottom: 1px solid #231815;
}

.corporate-table tbody tr:last-child {
    border-bottom: none;
}

.corporate-table tbody tr td:first-child {
    width: 20%;
    padding: 0;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}

.corporate-table tbody tr td:last-child {
    width: 20%;
    padding: 0;
    overflow: hidden;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
}

@media (max-width: 1050px) {
    .corporate-table tbody tr td:first-child {
        width: 10%;
    }

    .corporate-table tbody tr td:last-child {
        width: 10%;
    }

}

@media (max-width: 560px) {
    .corporate-table tbody tr td:first-child {
        display: none;
    }

    .corporate-table tbody tr td:last-child {
        display: none;  
    }
}

.corporate-label {
    padding: 1.25rem 2rem 1.25rem 0;
    text-align: left;
    vertical-align: top;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-standard);
    width: 20%;
}

@media (max-width: 991.98px) {
    .corporate-label {
        width: 30%;
    }

}

.corporate-value {
    padding: 1.25rem 0 1.25rem 2rem;
    text-align: left;
    vertical-align: top;
    font-size: 1.1rem;
    color: var(--text-standard);
    line-height: 1.8;
}

@media (max-width: 991.98px) {
    /* Tablet adjustments - inner-container handles the width */
}

@media (max-width: 767.98px) {
    .corporate-heading {
        font-size: 1.5rem;
    }
    /* Keep table layout on mobile (inline left-right), allow horizontal scroll if needed */
    .corporate-table {
        display: table;
        table-layout: fixed;
        width: 100%;
        border-collapse: collapse;
        overflow: auto;
    }

    .corporate-table tbody {
        display: table-row-group;
    }

    .corporate-table tr {
        display: table-row;
    }

    .corporate-table td,
    .corporate-table th {
        display: table-cell;
        vertical-align: top;
        padding: 0.75rem 1rem;
    }

    .corporate-label {
        display: table-cell;
        width: 30%;
        text-align: left;
        padding: 0.75rem 1rem 0.75rem 0;
        border-bottom: none;
    }

    .corporate-value {
        display: table-cell;
        width: 70%;
        padding: 0.75rem 0 0.75rem 1rem;
    }

    .corporate-table tbody tr {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 1px solid #231815;
    }
}

/* ===========================
   13. Location
   =========================== */

.location-section {
    background-color: #fff;
    padding-top: 140px;
    padding-bottom: 95px;
}

.location-bg-text {
    position: absolute;
    left: calc(-50vw + 50% - 3px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .location-bg-text {
        top: -50%;
    }
}


.location-heading {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--text-light);
    line-height: 1.6;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.location-heading-underline {
    display: block;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #68be8b, #337e47);
    margin: 10px auto 0;
}

/* Location Content */
.location-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.location-map {
    flex: 1;
}

.location-map iframe {
    width: 100%;
    min-height: 450px;
}

.location-info {
    flex: 1;
}

/* Location Table */
.location-table {
    width: 100%;
    border-collapse: collapse;
    border-bottom: 1px solid #231815;
}

.location-table tbody tr {
    border-bottom: 1px solid #231815;
}

.location-table tbody tr:last-child {
    border-bottom: none;
}

.location-label {
    padding: 1.25rem 2rem 1.25rem 2rem;
    text-align: left;
    vertical-align: top;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-standard);
    width: 30%;
}

.location-value {
    padding: 1.25rem 0 1.25rem 2rem;
    text-align: left;
    vertical-align: top;
    font-size: 1.1rem;
    color: var(--text-standard);
    line-height: 1.8;
}

@media (max-width: 767.98px) {
    
    .location-heading {
        font-size: 1.5rem;
    }
    
    .location-content {
        display: unset;
        flex-direction: column;
        gap: 2rem;
    }
    
    .location-map iframe {
        min-height: 300px;
    }
    
    /* Keep location table inline on mobile (left-right). Allow horizontal scroll if needed. */
    .location-table {
        display: table;
        table-layout: fixed;
        width: 100%;
        border-collapse: collapse;
    }

    .location-table tbody {
        display: table-row-group;
    }

    .location-table tr {
        display: table-row;
    }

    .location-table td {
        display: table-cell;
        vertical-align: top;
        padding: 0.75rem 1rem;
    }

    .location-label {
        display: table-cell;
        width: 35%;
        text-align: left;
        padding: 0.75rem 1rem 0.75rem 1rem;
        border-bottom: none;
    }

    .location-value {
        display: table-cell;
        width: 65%;
        padding: 0.75rem 0.5rem 0.75rem 1rem;
    }

    .location-table tbody tr {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 1px solid #231815;
    }
}

/* ===========================
   Forms
   =========================== */

.form-control,
.form-select {
    border: 2px solid #e0e0e0;
    transition: all var(--transition-speed) ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
}

/* ===========================
   Buttons
   =========================== */

.btn {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: all var(--transition-speed) ease;
}

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

.btn:active {
    transform: translateY(0);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

/* ===========================
   Footer
   =========================== */

footer {
    margin-top: auto;
}

footer a {
    transition: opacity var(--transition-speed) ease;
}

footer a:hover {
    opacity: 0.7;
}

/* ===========================
   Utilities
   =========================== */



/* ===========================
   Animations
   =========================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 767.98px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
    }
    
    .display-3 {
        font-size: 2.5rem;
    }
    
    .hero-image-placeholder {
        margin-top: 2rem;
        min-height: 200px;
    }
}

@media (max-width: 575.98px) {
    .btn-lg {
        padding: 0.6rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
}

/* ===========================
   Section 15: Footer
   =========================== */

.footer-section {
    background-color: #fff;
    padding: 3rem 0 2rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 2rem;
    padding: 0;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
}

.footer-social-link {
    text-decoration: none;
    transition: transform var(--transition-speed) ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
}

.footer-social-icon {
    width: 45px;
    height: 45px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 1.5rem 0 0;
}

.footer-copyright {
    text-align: center;
    font-size: 14px;
    color: var(--text-grey);
    flex: 1;
}

.footer-license {
    text-align: right;
    font-size: 14px;
    color: var(--text-grey);
    white-space: nowrap;
}

/* Responsive adjustments */

@media (max-width: 767.98px) {
    .footer-section {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0px;
    }
    
    .footer-logo-img {
        height: 32px;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .footer-social-icon {
        width: 28px;
        height: 28px;
    }
    
    .footer-bottom {
        padding-top: 1rem;
    }
    
    .footer-copyright,
    .footer-license {
        text-align: center;
    }
}

/* ===========================
   Back to Top Button
   =========================== */

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 65px;
    height: 65px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.back-to-top img {
    width: 65px;
    height: 65px;
    display: block;
}

@media (max-width: 767.98px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
    }
    
    .back-to-top img {
        width: 55px;
        height: 55px;
    }
}

/* ===========================
   Print Styles
   =========================== */

@media print {
    .navbar,
    footer,
    .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
}

/* ===========================
   Gap
   =========================== */

.gap-5 { 
    gap: 3.25rem !important;
}

/* ===========================
  Fade Animations
   =========================== */


.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
