/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap'); */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css'); :root {
    --primary: #12355B;
    --primaryk: #105cae;
    --primary-light: #1A4677;
    --primary-dark: #0A213B;
    --secondary: #5b3812;
    --secondary-light: #F7F1EB;
    --secondary-hover: #45290C;
    --secondary-border: rgba(91, 56, 18, 0.18);
    --teal: #1497a9;
    --teal-light: #1497a947;
    --teal-border: rgb(82 148 170 / 50%);
    --accent: #247313;
    --accent0: #62aa52;
    --accent-light: #f0f7ea;
    --accent-dark: #195c0b;
    --bg-main: #FAFBFC;
    --bg-warm: hsl(203 45% 97% / 1);
    --bg-alt: #F4F8FC;
    --bg-white: #FFFFFF;
    --text-dark: #1F2937;
    --text-muted: #4B5563;
    --text-light: #6B7280;
    --border-color: #E8EDF2;
    --border-hover: #CBD5E1;
    --success: #43A047;
    --font-heading: 'Google Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 4px 12px rgba(18, 53, 91, 0.03);
    --shadow-md: 0 8px 24px rgba(18, 53, 91, 0.07);
    --shadow-lg: 0 16px 40px rgba(18, 53, 91, 0.12);
    --shadow-hover: 0 20px 48px rgba(18, 53, 91, 0.16);
    --shadow-teal: 0 8px 30px rgba(79, 175, 168, 0.25);
    --shadow-warm: 0 8px 30px rgba(91, 56, 18, 0.2);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base & Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: #ffffff;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.25;
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.text-accent {
    color: var(--accent) !important;
}

.container {
    width: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.bg-warm-tint {
    background-color: var(--bg-warm);
    background-color: #eaf2fa59;
}

.bg-warm-green {
    background-color: #f9fbf6;
}

.bg-white-clean {
    background-color: var(--bg-white);
}

.bg-main-tint {
    background-color: #ffffff;
}

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

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

.text-right {
    text-align: right;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background-color: var(--accent-light);
    color: var(--accent-dark);
    border-radius: var(--radius-pill);
    font-size: 0.805rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(79, 175, 168, 0.3);
}

.section-tag-warm {
    background-color: #dde6f8;
    color: var(--primary);
    border-color: #ebeff7;
}

.section-title {
    font-size: clamp(24px, 9vw,2.45rem);
    font-weight: 700;
    color: #3b3e56;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    font-family: var(--font-body);
}

.section-title.accent {
    color: var(--accent-dark);
}

.section-subtitle {
    font-size: 1.00rem;
    color: var(--text-dark);
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-weight: 600;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 28px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-pill);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 14px rgba(18, 53, 91, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(18, 53, 91, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--bg-white);
    box-shadow: var(--shadow-teal);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(79, 175, 168, 0.4);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--bg-white);
    box-shadow: var(--shadow-warm);
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.8);
    border-color: var(--primary);
    color: var(--primary);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-white {
    background-color: var(--bg-white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    background-color: var(--bg-main);
    transform: translateY(-2px);
    color: var(--primary-light);
}

.btn-lg {
    padding: 16px 34px;
    font-size: 1.05rem;
}

/* Top Header Bar */
.top-header {
    /* background: linear-gradient(305deg, #062c57 50%, #343ea7); */
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1001;
}

.top-header-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ndis-approved-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff3f8;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.ndis-approved-badge i {
    color: var(--accent);
    font-size: 25px;
}

.top-ndis-logo {
    height: 30px;
    width: auto;
    display: block;
}

.ndis-approved-text {
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #2f2f2f;
    font-size: 0.825rem;
}

.top-header-right {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
    flex-wrap: wrap;
}

.top-header-right .br {
    background: #c2cddb;
    height: 20px;
    width: 1px;
}

.top-contact-item {
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.965rem;
    transition: color var(--transition-fast);
}

.top-contact-item i {
    color: var(--accent);
    font-size: 21px;
}

.top-contact-item:hover {
    color: var(--accent);
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-normal);
    background: rgb(255 255 255);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-fast);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.975rem;
    font-weight: 600;
    color: #54585b;
    position: relative;
    padding: 4px 0;
    white-space: nowrap;
}

.nav-link.active, .nav-link:hover {
    color: var(--accent);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

/* Fullscreen Hero Swiper Slider */
.hero-swiper-section {
    --hero-h: 680px;
    position: relative;
    width: 100%;
    min-height: var(--hero-h);
    overflow: hidden;
    background-color: var(--bg-warm);
}

.hero-swiper-container {
    width: 100%;
    height: 100%;
}

.heroswiper-img {
    width: 100%;
    height: var(--hero-h);
    z-index: 1;
}

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

.swiper-slide.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-bg-overlay-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 25, 45, 0.94) 0%, rgba(10, 33, 59, 0.85) 45%, rgba(18, 53, 91, 0.35) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-left-container {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    padding-top: 60px;
    padding-bottom: 40px;
    top: 0;
    width: 100%;
}

.hero-left-box {
    max-width: 910px;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Top Pill Badge */
.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 99px;
    font-size: clamp(0.705rem,4vw,0.825rem);
    font-weight: 700;
    letter-spacing: 0.8px;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.pill-heart {
    font-size: 0.85rem;
    color: var(--teal);
}

/* Hero Left Title */
.hero-left-title {
    font-size: clamp(2.1rem, 5vw, 3.5rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.18;
    margin-bottom: 24px;
    /* letter-spacing: -0.02em; */
    font-family: var(--font-body);
}

.hero-left-title .hero-green-text {
    color: var(--teal);
}

.hero-green-text {
    color: var(--accent);
}

/* Subtitle Pill Box */
.hero-desc-pill {
    display: inline-block;
    padding: 12px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
    color: #ffffffe3;
    font-size: 1.05rem;
    font-weight: 400;
    margin-bottom: 32px;
    max-width: 620px;
}

/* Hero Left Buttons */
.hero-left-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: var(--accent);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 650;
    border-radius: 99px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(98, 170, 82, 0.35);
    transition: all 0.3s ease;
}

.btn-hero-green:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(98, 170, 82, 0.45);
    color: #ffffff;
}

.btn-hero-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background-color: #ffffff;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 650;
    border-radius: 99px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.btn-hero-white:hover {
    background-color: var(--bg-main);
    transform: translateY(-2px);
    color: var(--primary);
}

.btn-hero-green i, .btn-hero-white i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-hero-green:hover i, .btn-hero-white:hover i {
    transform: translateX(4px);
}

/* Hero Bottom Feature Points */
.hero-features-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--teal-border);
    background: var(--teal-light);
    color: var( --teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-feature-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--teal);
}

.hero-feature-text {
    display: flex;
    flex-direction: column;
}

.feat-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.feat-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.2;
}

/* Swiper Pagination & Controls */
.hero-controls-wrapper {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    width: auto !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #dcdcdc;
    opacity: 0.4;
    transition: all var(--transition-fast);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    width: 26px;
    border-radius: var(--radius-pill);
    opacity: 1;
}

.hero-pause-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgb(255 255 255 / 57%);
    border: 1.5px solid rgb(255 255 255 / 57%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    font-size: 13px;
    transition: all var(--transition-fast);
    position: absolute;
    bottom: 20px;
    z-index: 31;
    left: 20px;
}

.hero-pause-btn:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: scale(1.08);
}

/* Trust Stats Bar */
.trust-stats {
    background: var(--bg-white);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 20px;
    border-right: 1px solid var(--border-color);
}

.stat-card:last-child {
    border-right: none;
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    border: 1px solid var(--secondary-border);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.about-img-container {
    position: relative;
}

.about-img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1;
}

.about-experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--primary);
    color: var(--bg-white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 220px;
    text-align: center;
    border: 4px solid var(--bg-white);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--teal);
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0;
}

.about-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--primary);
}

.about-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Services Section - Content Centered */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 22px 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* text-align: center; */
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}

.service-icon {
    width: 62px;
    height: 62px;
    border-radius: 99px;
    background: var(--accent-light);
    background: #d8e9e5;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    margin-bottom: 17px;
    transition: all var(--transition-fast);
    /* border: 1px solid var(--secondary-border); */
}

.service-card:hover .service-icon {
    background: var(--accent-dark);
    color: var(--bg-white);
    transform: scale(1.08);
}

.service-title {
    font-size: 1.28rem;
    font-weight: 700;
    margin-bottom: 9px;
    color: var(--primary);
}

.service-desc {
    font-size: 0.975rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--accent-dark);
    cursor: pointer;
    padding: 8px 28px;
    border-radius: var(--radius-pill);
    background: var(--accent-light);
    transition: all var(--transition-fast);
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover {
    background: var(--accent);
    color: var(--bg-white);
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Why Choose Us Section - Wrapped Container Box & Split Layout */
.why-us-wrapper-box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.why-us-img-col {
    position: relative;
}

.why-us-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-us-img {
    width: 100%;
    height: 610px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.why-us-wrapper-box:hover .why-us-img {
    transform: scale(1.02);
}

.why-us-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.badge-circle-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-circle-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.badge-text-wrap {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
}

.badge-sub {
    font-size: 0.825rem;
    color: var(--text-muted);
}

.why-us-points-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.why-us-point-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #f9fbf6;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.why-us-point-item:hover {
    background: #ffffff;
    border-color: rgba(98, 170, 82, 0.35);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(18, 53, 91, 0.06);
}

.point-svg-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(98, 170, 82, 0.2);
    transition: all 0.3s ease;
}

.point-svg-circle svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.why-us-point-item:hover .point-svg-circle {
    background: var(--accent);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.08);
}

.why-point-title {
    font-size: 1.125rem;
    font-weight: 650;
    color: var(--primary);
    margin-bottom: 4px;
}

.why-point-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

/* Vision & Mission Section */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal);
}

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

.vm-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.vm-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.vm-title {
    font-size: 1.75rem;
    font-weight: 800;
}

.vm-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Core Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.value-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 36px;
    text-align: center;
    transition: all var(--transition-normal);
}

.value-card:hover {
    background: var(--primary);
    color: var(--bg-white);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.value-card:hover h3, .value-card:hover p {
    color: var(--bg-white);
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--secondary-light);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    transition: all var(--transition-fast);
    border: 1px solid var(--secondary-border);
}

.value-card:hover .value-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.value-title {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Modern Journey Section Redesign */
.journey-process-wrapper {
    position: relative;
    padding: 20px 0;
}

.journey-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

.journey-step-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 36px 32px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 10px 30px rgba(18, 53, 91, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.journey-step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    transition: width 0.4s ease;
}

.journey-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(98, 170, 82, 0.12), 0 8px 20px rgba(18, 53, 91, 0.05);
    border-color: rgba(98, 170, 82, 0.35);
}

.journey-step-card:hover::after {
    width: 100%;
}

.journey-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 24px;
}

.journey-step-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.9;
    line-height: 1;
    letter-spacing: -0.03em;
}

.journey-icon-box {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--accent-light);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.05rem;
    border: 1px solid rgba(98, 170, 82, 0.2);
    transition: all 0.35s ease;
}

.journey-step-card:hover .journey-icon-box {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 22px rgba(98, 170, 82, 0.35);
    border-color: transparent;
}

.journey-step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.journey-step-desc {
    font-size: 0.975rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Modern Redesigned Testimonials Section */
.testimonial-carousel {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
    padding: 10px 0;
}

.testimonial-card {
    background: #ffffff;
    padding: 48px 44px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 16px 45px rgba(18, 53, 91, 0.05);
    position: relative;
    overflow: hidden;
    display: none;
    text-align: left;
    transition: all 0.4s ease;
}

.testimonial-card.active {
    display: block;
    animation: slideInFade 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-bg-icon {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 5rem;
    color: var(--accent);
    opacity: 0.08;
    pointer-events: none;
}

.testimonial-header {
    margin-bottom: 24px;
}

.stars-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-light);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(98, 170, 82, 0.2);
}

.stars {
    color: #F59E0B;
    font-size: 0.95rem;
    display: flex;
    gap: 2px;
}

.rating-label {
    font-size: 0.825rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.testimonial-quote {
    font-size: 1.225rem;
    font-weight: 500;
    line-height: 1.75;
    color: #2b3040;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 24px;
}

.author-avatar-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(98, 170, 82, 0.25);
}

.author-details {
    text-align: left;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 32px;
}

.carousel-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-size: 15px;
}

.carousel-btn:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(98, 170, 82, 0.3);
}

.carousel-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 99px;
}

/* Call To Action Banner (.cta-banner) */
.cta-banner {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #12355b 0%, #0a213b 50%, #17422b 100%);
    color: #ffffff;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(98, 170, 82, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-content {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.25;
    font-family: var(--font-heading);
    letter-spacing: -0.01em;
}

.cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 auto 36px auto;
    line-height: 1.6;
    max-width: 680px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 99px;
}

/* Contact Section & Form Styling */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
}

.contact-card {
    background: #ffffff;
    padding: 44px 40px;
    border-radius: 24px;
    border: 1px solid rgba(36, 115, 19, 0.15);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.05);
}

.form-intro-alert {
    background: rgba(36, 115, 19, 0.06);
    border-left: 4px solid var(--accent, #247313) !important;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.form-intro-alert .alert-icon {
    font-size: 1.25rem;
    color: var(--accent, #247313);
    margin-top: 2px;
    flex-shrink: 0;
}

.form-intro-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 22px;
}

.form-group .error , #phone-email-error.error {
    color: #e53e3e;
    font-size: 0.825rem;
    margin-top: 6px;
    font-weight: 500;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-heading);
    font-size: 0.925rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.req-star {
    color: #e53e3e;
    font-weight: 700;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #2d3748;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background-color: #fcfdfe;
    transition: all var(--transition-fast);
}

.form-control:hover {
    border-color: #cbd5e0;
    background-color: #ffffff;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent, #247313);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(36, 115, 19, 0.12);
}

.form-control.is-invalid {
    border-color: #e53e3e !important;
    box-shadow: 0 0 0 3.5px rgba(229, 62, 62, 0.15) !important;
}

textarea.form-control {
    resize: vertical;
    min-height: 110px;
}

.form-field-hint {
}

/* Contact Method Chips */
.contact-method-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding-top: 4px;
}

.contact-chip-item {
    cursor: pointer;
    margin: 0;
}

.contact-chip-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.contact-chip-box {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease;
    user-select: none;
}

.contact-chip-box i {
    font-size: 0.85rem;
    color: #718096;
    transition: color 0.25s ease;
}

.contact-chip-item:hover .contact-chip-box {
    border-color: var(--accent, #247313);
    background: #ffffff;
    color: var(--accent, #247313);
}

.contact-chip-input:checked + .contact-chip-box {
    background: rgba(36, 115, 19, 0.1);
    border-color: var(--accent, #247313);
    color: var(--accent, #247313);
    box-shadow: 0 2px 8px rgba(36, 115, 19, 0.15);
}

.contact-chip-input:checked + .contact-chip-box i {
    color: var(--accent, #247313);
}

/* Captcha Box */
.captcha-group-box {
    background: #f8faf7;
    border: 1.5px dashed rgba(36, 115, 19, 0.25);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 22px;
}

.captcha-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.captcha-badge {
    background: #ffffff;
    color: var(--accent, #247313);
    padding: 4px 12px;
    border-radius: 8px;
    border: 1px solid rgba(36, 115, 19, 0.2);
    font-size: 1.15rem;
    font-weight: 700;
}

.btn-captcha-refresh {
    font-size: 0.825rem;
    padding: 4px 12px;
    border-radius: 8px;
    color: #4a5568;
    border: 1px solid #cbd5e0;
    background: #ffffff;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-captcha-refresh:hover {
    background: var(--accent, #247313);
    color: #ffffff;
    border-color: var(--accent, #247313);
}

/* Submit Button */
.btn-submit-lg {
    padding: 15px 44px;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent, #247313) 0%, #1a5c0e 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(36, 115, 19, 0.25);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-submit-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(36, 115, 19, 0.35);
    background: linear-gradient(135deg, #2b8417 0%, var(--accent, #247313) 100%);
    color: #ffffff;
}

.form-privacy-notice {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #718096;
    margin-top: 18px;
    margin-bottom: 24px;
}

.form-privacy-notice a {
    color: var(--accent, #247313);
    font-weight: 600;
    text-decoration: underline;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #c5cac93b;
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 1px solid var(--accent-light);
}

.info-title {
    font-size: 0.975rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 9px;
}

.info-detail {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 500;
}

.info-detail a:hover {
    color: var(--accent);
}

.map-placeholder {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    background: var(--secondary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer Section */
.footer {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding-top: 80px;
    padding-bottom: 30px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -40px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 40px;
}

.footer-grid {
    display: grid;
    /* grid-template-columns: 0.8fr 1.2fr 1.0fr 1fr; */
    gap: 40px;
    margin-bottom: 40px;
}

.footer__grid--old, .footer__grid--new {
    grid-template-columns: 1fr;
}

.footer-brand .brand-logo {
    height: 56px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: 0.955rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 480px;
    text-align: justify;
}

.ndis-badge-footer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 24px;
    position: relative;
    line-height: 1.25;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-new .footer-links {
    margin-bottom: 15px
}

.footer-links a {
    color: rgb(224 224 224 / 85%);
    font-size: 0.95rem;
    transition: all var(--transition-fast);
    line-height: 1.75;
    font-weight: 500;
    letter-spacing: 0.15px;
    position: relative;
    display: inline-block;
}

.footer-links a:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    display: block;
    background-color: var(--accent);
    border-radius: 99px;
    top: 8px;
    left: 0;
    transition: all 360ms ease;
    opacity: 0;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(14px);
}

.footer-links a:hover:before {
    left: -14px;
    opacity: 1;
}

.footer-cinfo {
    display: flex;
    gap: 10px 10px;
    margin-bottom: 5px;
}

.footer-links :is(span, a) i {
    margin-right: 7px;
}

.footer-socials {
    display: flex;
    gap: 5px 12px;
    /* margin-top: 20px; */
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-bottom: 10px;
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 1rem;
    color: rgb(255 255 255 / 81%);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 33, 59, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-white);
    width: 100%;
    max-width: 650px;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: relative;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-alt);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.1rem;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

.service-split-grid.reverse {
    grid-template-columns: 1.1fr 1fr;
}

.service-split-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-split-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-smooth);
    display: block;
}

.service-split-img-wrapper:hover .service-split-img {
    transform: scale(1.03);
}

.service-split-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(18, 53, 91, 0.92);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 14px 22px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-md);
}

.service-split-badge svg {
    width: 22px;
    height: 22px;
    fill: var(--teal);
}

.service-points-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px;
}

.service-point-card {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-fast);
}

.service-point-card:hover {
    transform: translateX(6px);
}

.point-check-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #0d7612;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
    /* border: 1px solid var(--secondary-border); */
}

.community .point-check-icon {
    background: var(--primary);
    color: #ffffff;
}

.point-text {
    font-size: 1.055rem;
    font-weight: 450;
    color: #1b1b1b;
    line-height: 1.4;
}

.agedcare {
    /* background-color: #f0f7ea80; */
}

.community {
    background-color: #f9fafe;
}

.title-span {
    color: var(--primary);
}

.title-span.accent {
    color: var(--accent);
}

/* Flexbox & Alignment Utilities */
.d-flex {
    display: flex !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-end {
    align-items: flex-end !important;
}

/* Spacing Utilities */
.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.25rem !important;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.ms-1 {
    margin-left: 0.25rem !important;
}

.ms-2 {
    margin-left: 0.5rem !important;
}

.me-2 {
    margin-right: 0.5rem !important;
}

.fs-5 {
    font-size: 1.25rem !important;
}

.mt-1 {
    margin-top: 25px;
}

/* About Section Text Classes */
.about-lead-text {
    font-size: 1.125rem;
    color: #38383a;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-sub-text {
    font-size: 1.04rem;
    color: #3c3c3c;
    margin-bottom: 24px;
    line-height: 1.6;
}

/* Section Subtitle Left Aligned */
.section-subtitle-left {
    text-align: left;
    margin: 0 0 24px 0;
}

/* Contact Form Layout Classes */
.contact-form-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

#formAlert {
    display: none;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-full-width {
    width: 100%;
}

/* Icon Secondary Color */
.icon-secondary {
    color: var(--accent);
}

/* Footer Legal Links */
.footer-legal-link {
    color: rgba(255, 255, 255, 0.6);
    margin-right: 16px;
}

.footer-legal-link:last-child {
    margin-right: 0;
}

.footer-legal-link:hover {
    color: var(--accent);
}

/* Modal Content Classes */
.modal-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.modal-desc {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.modal-subtitle {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.modal-inclusions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.modal-actions-row {
    display: flex;
    gap: 14px;
}

/* Back To Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Inner Page Hero Banner & Breadcrumb */
.inner-banner-section {
    position: relative;
    padding: 60px 0 50px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.inner-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(18, 53, 91, 0.92) 0%, rgb(10 59 21 / 85%) 100%);
    z-index: 1;
}

.inner-banner-container {
    position: relative;
    z-index: 2;
}

.inner-banner-title {
    font-size: 35px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.inner-banner-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto 24px auto;
    line-height: 1.6;
}

.inner-breadcrumb {
    display: none;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 8px 22px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 500;
}

.inner-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--accent);
    font-weight: 600;
}

/* About Us Page Custom Commitment & Values */
.about-commitment-card {
    background: linear-gradient(135deg, #12355b 0%, #0a213b 100%);
    border-radius: 24px;
    padding: 48px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(18, 53, 91, 0.15);
}

.about-commitment-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.about-commitment-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.value-card-modern {
    background: var(--bg-white);
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.value-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(18, 53, 91, 0.08);
    border-color: rgba(98, 170, 82, 0.4);
}

.value-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--accent-light);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.value-card-modern:hover .value-icon-circle {
    background: var(--accent);
    color: #ffffff;
    transform: scale(1.05);
}

.value-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.value-card-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Service Detail Page Layout */
.service-detail-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
}

.service-detail-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.service-detail-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 28px;
}

.service-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-detail-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.sidebar-widget {
    background: var(--bg-white);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-light);
}

.sidebar-services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-service-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 12px;
    background: var(--bg-main);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-service-link:hover, .sidebar-service-link.active {
    background: var(--primary);
    color: #ffffff;
    padding-left: 22px;
}

.sidebar-service-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.sidebar-service-link:hover i {
    transform: translateX(4px);
}

/* FAQs Page Accordion */
.faq-accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 920px;
    margin: 0 auto;
}

.faq-item-card {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-card.active {
    border-color: rgba(98, 170, 82, 0.4);
    box-shadow: 0 10px 30px rgba(98, 170, 82, 0.08);
}

.faq-question-btn {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 650;
    color: var(--primary);
    cursor: pointer;
    gap: 16px;
}

.faq-icon-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item-card.active .faq-icon-toggle {
    transform: rotate(180deg);
    background: var(--accent);
    color: #ffffff;
}

.faq-answer-pane {
    padding: 0 28px 24px 28px;
    display: none;
    font-size: 0.975rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-item-card.active .faq-answer-pane {
    display: block;
}

/* Extracted Utility & Component Classes */
.sidebar-widget-cta {
    background: linear-gradient(135deg, #12355b 0%, #0a213b 100%);
    color: #ffffff;
}

.sidebar-title-light {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.sidebar-cta-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-sub-heading {
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.grid-span-2 {
    grid-column: span 2;
}

.ndis-icon-lg {
    font-size: 3rem;
    margin-bottom: 20px;
}

.text-center-max680 {
    max-width: 680px;
    margin: 0 auto 24px auto;
}

.map-iframe {
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 16px;
}

.svg, .svg-brands, .svgbrands {
    display: inline-block;
    width: var(--fs, 1.2em);
    height: var(--fs, 1.2em);
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    vertical-align: middle;
}

.fa6-brands--facebook-f {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='black' d='M80 299.3V512h116V299.3h86.5l18-97.8H196v-34.6c0-51.7 20.3-71.5 72.7-71.5c16.3 0 29.4.4 37 1.2V7.9C291.4 4 256.4 0 236.2 0C129.3 0 80 50.5 80 159.4v42.1H14v97.8z'/%3E%3C/svg%3E")
}

.fa6-brands--instagram {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='black' d='M224.1 141c-63.6 0-114.9 51.3-114.9 114.9s51.3 114.9 114.9 114.9S339 319.5 339 255.9S287.7 141 224.1 141m0 189.6c-41.1 0-74.7-33.5-74.7-74.7s33.5-74.7 74.7-74.7s74.7 33.5 74.7 74.7s-33.6 74.7-74.7 74.7m146.4-194.3c0 14.9-12 26.8-26.8 26.8c-14.9 0-26.8-12-26.8-26.8s12-26.8 26.8-26.8s26.8 12 26.8 26.8m76.1 27.2c-1.7-35.9-9.9-67.7-36.2-93.9c-26.2-26.2-58-34.4-93.9-36.2c-37-2.1-147.9-2.1-184.9 0c-35.8 1.7-67.6 9.9-93.9 36.1s-34.4 58-36.2 93.9c-2.1 37-2.1 147.9 0 184.9c1.7 35.9 9.9 67.7 36.2 93.9s58 34.4 93.9 36.2c37 2.1 147.9 2.1 184.9 0c35.9-1.7 67.7-9.9 93.9-36.2c26.2-26.2 34.4-58 36.2-93.9c2.1-37 2.1-147.8 0-184.8M398.8 388c-7.8 19.6-22.9 34.7-42.6 42.6c-29.5 11.7-99.5 9-132.1 9s-102.7 2.6-132.1-9c-19.6-7.8-34.7-22.9-42.6-42.6c-11.7-29.5-9-99.5-9-132.1s-2.6-102.7 9-132.1c7.8-19.6 22.9-34.7 42.6-42.6c29.5-11.7 99.5-9 132.1-9s102.7-2.6 132.1 9c19.6 7.8 34.7 22.9 42.6 42.6c11.7 29.5 9 99.5 9 132.1s2.7 102.7-9 132.1'/%3E%3C/svg%3E")
}

.fa-x-twitter {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23000' d='M389.2 48h70.6L305.6 224.2L487 464H345L233.7 318.6L106.5 464H35.8l164.9-188.5L26.8 48h145.6l100.5 132.9zm-24.8 373.8h39.1L151.1 88h-42z'/%3E%3C/svg%3E")
}

.fa6-brands--youtube {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 576 512'%3E%3Cpath fill='black' d='M549.655 124.083c-6.281-23.65-24.787-42.276-48.284-48.597C458.781 64 288 64 288 64S117.22 64 74.629 75.486c-23.497 6.322-42.003 24.947-48.284 48.597c-11.412 42.867-11.412 132.305-11.412 132.305s0 89.438 11.412 132.305c6.281 23.65 24.787 41.5 48.284 47.821C117.22 448 288 448 288 448s170.78 0 213.371-11.486c23.497-6.321 42.003-24.171 48.284-47.821c11.412-42.867 11.412-132.305 11.412-132.305s0-89.438-11.412-132.305m-317.51 213.508V175.185l142.739 81.205z'/%3E%3C/svg%3E")
}

.mdi--heart {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m12 21.35l-1.45-1.32C5.4 15.36 2 12.27 2 8.5C2 5.41 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.08C13.09 3.81 14.76 3 16.5 3C19.58 3 22 5.41 22 8.5c0 3.77-3.4 6.86-8.55 11.53z'/%3E%3C/svg%3E");
}

.pepicons-print--headphone {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg fill='black'%3E%3Cpath fill-rule='evenodd' d='M18.88 17.069a1 1 0 0 1-1.347.602A2.98 2.98 0 0 1 15.013 19h-.016a1 1 0 0 1-.981-1.014l.054-4A1 1 0 0 1 15.089 13c.97.019 1.825.496 2.36 1.222q.051-.522.051-1.056c0-4.456-2.756-7.412-6.5-7.412S4.5 8.71 4.5 13.166q0 .585.062 1.155a2.98 2.98 0 0 1 2.491-1.287h.017a1 1 0 0 1 .98 1.014l-.054 4a1 1 0 0 1-1.019.986a3 3 0 0 1-2.47-1.382q-.058.03-.123.05a1 1 0 0 1-1.264-.634a12.4 12.4 0 0 1-.62-3.902c0-5.53 3.619-9.412 8.5-9.412s8.5 3.882 8.5 9.412c0 1.354-.212 2.673-.62 3.903' clip-rule='evenodd' opacity='.2'/%3E%3Cpath d='M17.406 14.911a.5.5 0 1 1-.95-.315c.358-1.076.544-2.236.544-3.43c0-4.725-2.972-7.912-7-7.912S3 6.44 3 11.166a10.9 10.9 0 0 0 .544 3.43a.5.5 0 1 1-.95.315A11.9 11.9 0 0 1 2 11.166c0-5.262 3.403-8.912 8-8.912s8 3.65 8 8.912a11.9 11.9 0 0 1-.594 3.745'/%3E%3Cpath d='M5.977 17.034a3 3 0 0 1-2.942-3.04v-.022a2.98 2.98 0 0 1 3.035-2.937a1 1 0 0 1 .98 1.013l-.054 4a1 1 0 0 1-1.019.986M14.089 11a3 3 0 0 1 2.942 3.04v.022A2.98 2.98 0 0 1 14.013 17h-.016a1 1 0 0 1-.981-1.014l.054-4A1 1 0 0 1 14.089 11'/%3E%3C/g%3E%3C/svg%3E");
}

.pepicons-print--clipboard-check {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg fill='black'%3E%3Cg opacity='.2'%3E%3Cpath fill-rule='evenodd' d='M8 4.351c0-.47.414-.851.926-.851h6.148c.512 0 .926.381.926.851V7.65c0 .47-.414.851-.926.851H8.926C8.414 8.5 8 8.119 8 7.649z' clip-rule='evenodd'/%3E%3Cpath d='M6.462 19h10.577c.53 0 .961-.448.961-1V6c0-.552-.43-1-.962-1H6.462C5.93 5 5.5 5.448 5.5 6v12c0 .552.43 1 .962 1'/%3E%3C/g%3E%3Cpath fill-rule='evenodd' d='M6.175 2.5a.5.5 0 0 1 .5-.5h6.643a.5.5 0 0 1 .5.5v3.875a.5.5 0 0 1-.5.5H6.675a.5.5 0 0 1-.5-.5zm1 .5v2.875h5.643V3z' clip-rule='evenodd'/%3E%3Cpath d='M4.5 5v12h11V5h-2V4h2a1 1 0 0 1 1 1v12a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1V5a1 1 0 0 1 1-1h2v1z'/%3E%3Cpath fill-rule='evenodd' d='M12.284 9.088a.5.5 0 0 1 .128.696l-1.767 2.564a1 1 0 0 1-1.437.222l-1.515-1.175a.5.5 0 1 1 .614-.79L9.82 11.78l1.767-2.564a.5.5 0 0 1 .696-.128' clip-rule='evenodd'/%3E%3C/g%3E%3C/svg%3E");
}

.pepicons-print--heart {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg fill='black' fill-rule='evenodd' clip-rule='evenodd'%3E%3Cpath d='M7.052 6.1C5.955 6.385 5 7.286 5 8.996c0 2.24 1.73 4.57 6 6.873c4.27-2.304 6-4.633 6-6.873c0-1.71-.955-2.61-2.052-2.896c-1.174-.306-2.464.096-3.123 1.058a1 1 0 0 1-1.65 0C9.516 6.196 8.227 5.794 7.052 6.1M11 5.118c-1.245-1.043-2.961-1.342-4.452-.954C4.612 4.668 3 6.333 3 8.996c0 3.525 2.813 6.446 7.54 8.892a1 1 0 0 0 .92 0C16.187 15.442 19 12.521 19 8.996c0-2.663-1.612-4.328-3.548-4.832c-1.49-.388-3.207-.09-4.452.954' opacity='.2'/%3E%3Cpath d='M5.618 4.618C4.185 4.966 3 6.07 3 7.996c0 2.564 2.169 5.073 7 7.448c4.831-2.375 7-4.884 7-7.448c0-1.925-1.185-3.03-2.618-3.378c-1.471-.358-3.122.103-3.979 1.27a.5.5 0 0 1-.806 0C8.74 4.721 7.089 4.26 5.618 4.618m4.382.21C8.81 3.635 6.968 3.26 5.382 3.645C3.565 4.088 2 5.546 2 7.996c0 3.24 2.766 6.032 7.783 8.454a.5.5 0 0 0 .434 0C15.234 14.028 18 11.237 18 7.996c0-2.45-1.565-3.908-3.382-4.35c-1.586-.385-3.427-.01-4.618 1.181'/%3E%3C/g%3E%3C/svg%3E");
}

.iconamoon--shield-yes-fill {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' fill-rule='evenodd' d='M11.606 2.08a1 1 0 0 1 .788 0l6.394 2.741A2 2 0 0 1 20 6.66v6.86a7 7 0 0 1-3.527 6.077l-3.977 2.272a1 1 0 0 1-.992 0l-3.977-2.272A7 7 0 0 1 4 13.518V6.66a2 2 0 0 1 1.212-1.838zm4.101 8.627a1 1 0 0 0-1.414-1.414L11 12.586l-1.293-1.293a1 1 0 0 0-1.414 1.414l2 2a1 1 0 0 0 1.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.ic--baseline-call {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.98.98 0 0 0-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02c-.37-1.11-.56-2.3-.56-3.53c0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99C3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99'/%3E%3C/svg%3E");
}

.ic--baseline-email {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2m0 4l-8 5l-8-5V6l8 5l8-5z'/%3E%3C/svg%3E");
}

/* icc */
.sr-only, .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float i {
    color: #ffffff;
    line-height: 1;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
    color: #ffffff;
}

.whatsapp-float:hover i {
    transform: rotate(12deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: #072545;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.825rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #072545;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.form-intro-alert {
    background: rgba(98, 170, 82, 0.08);
    border-left: 4px solid var(--accent) !important;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
}

.form-intro-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 0;
}

.form-field-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: -12px;
    margin-bottom: 16px;
    display: block;
    /* border-top: 1px solid #e0e0e0; */
    padding-top: 17px;
    font-size: 0.925rem;
    font-weight: 600;
    color: #1a202c;
}

.form-privacy-notice {
    font-size: 0.825rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 20px;
}

.form-privacy-notice a {
    color: var(--accent);
    text-decoration: underline;
}

.form-privacy-notice a:hover {
    color: var(--primary);
}

.btn-captcha-refresh {
    font-size: 0.8rem;
    padding: 2px 8px;
}

.info-icon-danger {
    background: rgba(220, 53, 69, 0.1) !important;
    border-color: rgba(220, 53, 69, 0.2) !important;
}

.info-icon-danger i {
    color: #dc3545 !important;
}

.info-title-danger {
    color: #dc3545 !important;
}

.oncall-note {
    display: block;
    margin-top: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Founder Message Section Design */
.founder-section {
    background: var(--bg-warm-tint, #80989d1f);
    padding: 90px 0;
}

.founder-card {
    /* background: #ffffff; */
    border-radius: 24px;
    /* border: 1px solid rgba(36, 115, 19, 0.15); */
    /* box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05); */
    /* padding: 52px; */
    position: relative;
    overflow: hidden;
}

.founder-card-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: start;
}

.founder-profile-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #f8faf7;
    border: 1px solid rgba(36, 115, 19, 0.12);
    border-radius: 18px;
    padding: 36px 24px;
}

.founder-avatar-wrapper {
    position: relative;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.founder-avatar-circle {
    --w: 280px;
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: linear-gradient(135deg, #d8e9e5 0%, #eef6f4 100%);
    border: 3px solid #ffffff;
    box-shadow: 0 8px 24px rgb(36 115 19 / 8%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var( --accent, #247313);
    font-size: 40px;
    margin-bottom: 14px;
}

.founder-exp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent, #247313);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(36, 115, 19, 0.25);
}

.founder-exp-badge .exp-num {
    font-weight: 800;
    font-size: 0.95rem;
}

.founder-info {
    margin-bottom: 20px;
}

.founder-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark, #222222);
    margin-bottom: 4px;
}

.founder-org {
    font-size: 0.88rem;
    color: var(--text-muted, #666666);
    margin: 0;
}

.founder-quote-badge {
    background: #ffffff;
    border-left: 3px solid var(--accent, #247313);
    border-radius: 10px;
    padding: 16px;
    text-align: left;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.founder-quote-badge .quote-icon {
    color: var(--accent, #247313);
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
    opacity: 0.8;
}

.badge-quote-text {
    font-size: 0.88rem;
    font-style: italic;
    color: #444444;
    line-height: 1.5;
    margin: 0;
}

.founder-message-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.founder-message-col .section-title {
    margin-bottom: 24px;
}

.founder-message-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4a5568;
    margin-bottom: 10px;
}

.founder-message-body p.lead-paragraph {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a202c;
    line-height: 1.8;
}

.founder-highlight-box {
    background: rgba(36, 115, 19, 0.06);
    border: 1.5px solid rgba(36, 115, 19, 0.2);
    border-radius: 14px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 24px 0 28px;
}

.founder-highlight-box .highlight-icon {
    font-size: 28px;
    color: var(--accent, #247313);
    flex-shrink: 0;
}

.founder-highlight-box .highlight-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent, #247313);
    line-height: 1.6;
    margin: 0;
}

.founder-signoff {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.signoff-details {
    display: flex;
    flex-direction: column;
}

.sign-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
}

.sign-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--accent, #247313);
}

.sign-company {
    font-size: 0.85rem;
    color: var(--text-muted, #718096);
}

/* zz */
@media (min-width: 768px) {
    .footer__grid--old, .footer__grid--new {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 991px) {
    .footer__grid--old, .footer__grid--new {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .mt-lg-5 {
        margin-top: 55px;
    }

    .footer__grid--old {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer__grid--new {
        grid-template-columns: repeat(4, 1fr) ;
    }
}

@media (max-width: 1200px) {
    .nav-btn {
        display: none
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .hero-center-box {
        padding: 36px 24px;
        margin: 0 16px;
    }

    .about-grid, .contact-grid, .vm-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline-line, .timeline-progress {
        display: none;
    }

    .cta-grid {
        flex-direction: column;
        text-align: center;
    }

    .journey-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .journey-track-line {
        display: none;
    }
}

/* Medium Tablets & Landscape (max-width: 992px) */
@media (max-width: 992px) {
    .why-us-wrapper-box {
        grid-template-columns: 1fr;
        padding: 32px 14px;
        gap: 36px;
    }

    .why-us-img {
        height: 340px;
    }

    .service-split-grid, .service-split-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-split-grid.reverse .service-split-img-col {
        order: -1;
    }

    .service-split-img {
        height: 380px;
    }

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

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .about-commitment-card {
        padding: 32px 24px;
    }
}

/* Small Tablets & Mobile Devices (max-width: 768px) */
@media (max-width: 991px) {
    .top-contact-item {
        font-size: 0.865rem;
    }

    .nav-menu, .nav-actions {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-menu.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 30px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-color);
        gap: 18px;
    }

    .hero-swiper-section {
        --hero-h: 630px;
    }

    .hero-center-container {
        padding-top: 0;
    }

    .hero-title {
        font-size: 2.15rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

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

    .section-title {
        /* font-size: 2rem; */
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .journey-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Phones (max-width: 640px) */
@media (max-width: 640px) {
    .container {
        padding: 0 9px;
    }

    .top-contact-item {
        display: none
    }

    .navbar {
        padding: 5px 0;
    }

    .brand-logo {
        height: 52px;
    }

    .top-header-right .br {
        display: none
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .inner-banner-section {
        padding: 40px 0 20px 0;
    }

    .faq-question-btn {
        padding: 18px 20px;
        font-size: 1rem;
    }

    .faq-answer-pane {
        padding: 0 20px 20px 20px;
    }

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

    .hero-features-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        display: none;
    }

    .hero-left-buttons {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .btn-hero-green, .btn-hero-white {
        width: 100%;
    }

    .hero-desc-pill {
        border-radius: 16px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .cta-banner {
        padding: 56px 0;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .top-header-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        justify-content: center;
    }

    .top-header-right {
        gap: 14px;
        font-size: 0.8rem;
        justify-content: center;
    }

    .top-contact-item span {
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .section-padding, .founder-section {
        padding: 30px 0;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .service-card {
        padding: 12px 15px;
    }

    .inner-banner-title {
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 0.02rem;
    }

    .inner-banner-subtitle {
        font-size: 0.875rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .info-item {
        gap: 10px;
        padding: 18px 9px;
    }

    .info-icon {
        width: 38px;
        height: 38px;
        font-size: 1.05rem;
    }

    .info-detail {
        font-size: 0.85rem;
    }

    .contact-card {
        padding: 24px 20px;
        border-radius: 23px;
    }

    .about-experience-badge {
        bottom: -25px;
        right: 0;
        padding: 14px;
    }

    .about-highlights {
        grid-template-columns: 1fr ;
    }
}

/* Contact Form & Info Panel Enhancements */
.form-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .form-grid-2col {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .founder-avatar-circle {
        --w: 260px;
    }
}

@media (max-width: 991px) {
    .founder-card-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .founder-card {
        padding: 32px 4px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1380px;
    }
}
