/* Global Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #8CC63F;
    --dark-bg: #050a06;
    --text-light: #ffffff;
    --text-muted: #dcdcdc;
    --off-white-bg: #f8f6ee;
    --dark-green: #1a2916;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', 'Outfit', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.highlight-green {
    color: var(--primary-green);
}
.section-heading {
    margin: 0 0 8px 0;
}

.section-heading-divider {
    display: block;
    width: 340px;
    max-width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    padding: 0;
    object-fit: contain;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 50px;
    background: rgba(248, 246, 238, 0.97);
    border-bottom: 1px solid rgba(140, 198, 63, 0.35);
    transition: transform 0.35s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 30px;
}

.main-nav a {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #000000;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-green);
}

.main-nav a.active {
    color: var(--primary-green);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #1a2916;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Sections Common */
section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

section > div[class$="-bg"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

section > div[class$="-bg"] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Hero Section */
.hero-section {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-section .hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.28);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    padding: 0 20px;
    z-index: 2;
    margin-top: 50px;
}

.hero-content h1 {
    font-size: 4.8rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.nowrap {
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid var(--primary-green);
    border-radius: 30px;
    color: var(--primary-green);
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s;
    background: rgba(0,0,0,0.4);
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: var(--primary-green);
    color: #000;
}

.scroll-indicator {
    margin-top: 60px;
}

.scroll-indicator svg {
    border: 1px solid white;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.scroll-indicator:hover svg {
    transform: translateY(5px);
}

.section-scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: white;
    display: flex;
}

.section-scroll-arrow.dark {
    color: #111;
}

.section-scroll-arrow svg {
    border: 1px solid currentColor;
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.section-scroll-arrow:hover svg {
    transform: translateY(5px);
}

.section-scroll-arrow.inline {
    position: static;
    align-self: center;
    transform: none;
    margin: 10px 0 30px;
}

.vision-section .section-scroll-arrow {
    bottom: 175px;
}

/* Beautiful Concave Bottom Transition */
.hero-curved-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
}

.hero-curve-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-curved-text-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    padding-right: 80px;
    padding-bottom: 25px;
    z-index: 6;
    box-sizing: border-box;
}

.hero-curved-text-container p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    color: #1a2916;
    font-weight: 500;
}

.hero-curved-text-container .leaf-watermark {
    height: 70px;
    margin-left: 20px;
    opacity: 0.25;
    transform: rotate(35deg);
    filter: brightness(0.6) sepia(1) hue-rotate(60deg) saturate(3);
}

/* Vision Section (Spring Never Ends) */
.vision-section {
    background-color: var(--off-white-bg);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    position: relative;
}

.vision-section .vision-bg {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 65%;
    height: 85%;
    z-index: 1;
    pointer-events: none;
}

.vision-section .vision-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%), linear-gradient(to bottom, black 70%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 30%), linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

.vision-content-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 100px 50px 180px 50px;
    z-index: 2;
}

.vision-text-panel {
    width: 40%;
    color: #111;
}

.vision-text-panel h2 {
    font-size: 3.8rem;
    color: #112211;
}

.vision-text-panel p {
    font-size: 1.05rem;
    color: #333;
    font-weight: 400;
}

.not-a-list {
    color: #2a4123;
    font-weight: 600;
    font-size: 1.15rem;
}

.italic-emphasis {
    font-style: italic;
    color: #2a4123 !important;
    font-weight: 600;
}

/* Horizontal Features Bar overlaid on bottom */
.features-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 50px 40px 50px;
    z-index: 5;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.feature-item {
    flex: 0 0 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #112211;
    font-size: 0.82rem;
    font-weight: 600;
    position: relative;
    padding: 0 10px;
}

.feature-item img {
    height: 46px;
    margin-bottom: 12px;
    object-fit: contain;
}

.feature-item span {
    font-family: 'Oswald', 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: #2a4123;
    opacity: 0.25;
}

/* Experience Section (Imagine the Impossible) */
.experience-section {
    background-color: var(--off-white-bg);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.experience-section .exp-bg {
    position: absolute;
    top: 50%;
    left: 53%;
    transform: translate(-50%, -50%);
    width: 68%;
    height: 88%;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-section .exp-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 22% bottom;
    border-radius: 60px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 72%);
    mask-image: radial-gradient(ellipse at center, black 35%, transparent 72%);
}

.experience-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 70px;
    position: relative;
    z-index: 2;
}

.exp-left {
    width: 35%;
    color: #111;
}

.exp-left h2 {
    font-size: 3.5rem;
    color: #112211;
    margin-bottom: 20px;
}

.exp-left p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.5;
}

.exp-right {
    width: 45%;
    display: flex;
    justify-content: flex-end;
}

.grid-cards-image {
    max-width: 330px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Leadership Section */
.leadership-section {
    background-color: #e5e5e5;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 20px 40px 20px;
    min-height: 100vh;
    position: relative;
}

.leadership-section .leadership-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.leadership-section .leadership-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
}

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

.leadership-title {
    font-size: 2.8rem;
    color: #2b2b2b;
    text-align: center;
    letter-spacing: 1px;
}

.leadership-separator-container {
    display: flex;
    justify-content: center;
    margin: 10px 0 20px 0;
    width: 100%;
}

.leadership-divider-img {
    width: 260px;
    height: auto;
    object-fit: contain;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    width: 100%;
}

.team-member {
    width: 235px;
    text-align: left;
}

.photo-wrapper {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid #b5b5b5;
    background-color: #333;
    aspect-ratio: 4 / 5;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.photo-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 35px rgba(0,0,0,0.9);
    pointer-events: none;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
    display: block;
}

.member-name {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-top: 8px;
    color: #111;
}

.member-name strong {
    font-weight: 700;
}

.member-title {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.3;
}

.network-title {
    margin-top: 45px;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #2b2b2b;
    text-align: center;
}

.network-subtitle {
    margin-top: 6px;
    margin-bottom: 25px;
    font-size: 1.05rem;
    color: var(--primary-green);
    text-align: center;
}

.network-pill {
    width: 100%;
    max-width: 1150px;
    background: rgba(255,255,255,0.35);
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 60px;
    padding: 30px 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 45px;
}

.network-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.15;
    white-space: nowrap;
    opacity: 0.75;
}

.network-logo small {
    display: block;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 2px;
}

.network-logo-serif {
    font-family: 'Oswald', serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deloitte-dot {
    color: #86bc25;
}

.bluehaus-dot {
    color: #1a1a1a;
    font-size: 0.7rem;
    vertical-align: middle;
}

.makmax-slash {
    display: inline-block;
    transform: skewX(-15deg);
}

.network-logo-img {
    height: 46px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    opacity: 0.85;
}

.network-logo-lg {
    height: 66px;
}

/* Future Section */
.future-section {
    color: white;
}

.future-section .future-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 65%, #000 100%);
    pointer-events: none;
}

.future-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 50px;
    width: 100%;
    flex: 1;
    z-index: 2;
}

.future-text-panel {
    width: 35%;
    max-width: 500px;
}

.future-content h2 {
    font-size: 3.2rem;
    line-height: 1.15;
    font-weight: 400;
}

.future-content p {
    font-size: 1.05rem;
    line-height: 1.45;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.italic-large {
    font-size: 1.6rem !important;
    font-style: italic;
    font-weight: 600;
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 30px 20px;
    background: #050a06;
    border-top: 2px solid var(--primary-green);
    z-index: 2;
}

.footer-col {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 1;
    padding: 0 30px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-col:last-child {
    border-right: none;
    flex: 1.2;
}

.footer-icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-green);
}

.footer-text h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.footer-logo-col {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 20px;
}

.footer-logo-col img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    display: none;
}



.copyright-bar {
    text-align: center;
    padding: 15px;
    font-size: 0.75rem;
    background: #000;
    color: #888;
    z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* Contact Section */
.contact-section {
    position: relative;
    background-color: #000;
    justify-content: flex-start;
    align-items: center;
    padding: 80px 20px 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.contact-section .contact-bg {
    position: absolute;
    top: 0;
    left: auto;
    right: 0;
    width: 60%;
    height: 58%;
    z-index: 1;
}

.contact-section .contact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.contact-section .contact-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #000 0%, rgba(0,0,0,0.6) 15%, transparent 40%),
                linear-gradient(to bottom, transparent 60%, #000 100%),
                linear-gradient(to top, transparent 85%, #000 100%);
    pointer-events: none;
}

.contact-content {
    max-width: 1200px;
    width: 100%;
    z-index: 2;
}

.contact-header-text {
    margin-bottom: 45px;
}

.contact-header-text h2 {
    font-size: 4.5rem;
}

.small-caps {
    font-weight: 600;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tiny-leaf {
    height: 15px;
}

.contact-cards-container {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: stretch;
}

.contact-card {
    flex: 1;
    background: #0a0f0a;
    border: 1.5px solid rgba(140, 198, 63, 0.25);
    border-radius: 12px;
    padding: 22px 20px;
    position: relative;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.contact-card-clickable {
    cursor: pointer;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.card-icon {
    width: 46px;
    height: 46px;
    border: 1.5px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon .contact-icon-svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-green);
}

.card-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fff;
}

.card-sep {
    height: 1.5px;
    width: 100%;
    background: linear-gradient(to right, transparent, rgba(140, 198, 63, 0.4) 15%, var(--primary-green) 50%, rgba(140, 198, 63, 0.4) 85%, transparent);
    margin: 15px 0;
}

.contact-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.45;
    min-height: 62px;
}

.contact-link {
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.contact-enquire-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

.contact-enquire-btn:hover {
    text-decoration: underline;
}

/* Enquiry Modal */
.enquiry-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.enquiry-modal-overlay.open {
    display: flex;
}

.enquiry-modal {
    position: relative;
    background: #0a0f0a;
    border: 1.5px solid rgba(140, 198, 63, 0.3);
    border-radius: 16px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
}

.enquiry-modal h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.enquiry-modal-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.enquiry-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s;
}

.enquiry-modal-close:hover {
    color: var(--primary-green);
}

#enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#enquiry-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

#enquiry-form input,
#enquiry-form textarea {
    background: #141a14;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 10px 12px;
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    resize: vertical;
}

#enquiry-form input:focus,
#enquiry-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.enquiry-submit-btn {
    margin-top: 8px;
    cursor: pointer;
    text-align: center;
}

.contact-logo-card {
    flex: 1.15;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;
    border: none;
    padding: 20px 10px 20px 110px;
}

.contact-logo-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.contact-bottom-bar {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.address-pill {
    width: 100%;
    padding: 16px 25px;
    border: 1.5px solid rgba(140, 198, 63, 0.25);
    border-radius: 12px;
    background: #0a0f0a;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
}

.final-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #666;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.datagride-link {
    color: var(--primary-green);
    font-weight: 600;
    text-decoration: none;
}

.datagride-link:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .vision-content-wrapper, .experience-container {
        flex-direction: column;
        padding: 80px 20px;
        text-align: center;
    }
    .vision-text-panel, .exp-left, .exp-right {
        width: 100%;
    }
    .exp-left {
        margin-bottom: 40px;
    }
    .section-heading-divider {
        margin-left: auto;
        margin-right: auto;
    }
    .team-grid {
        flex-wrap: wrap;
    }
    .contact-cards-container {
        flex-wrap: wrap;
    }
    .contact-card, .contact-logo-card {
        min-width: 45%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    .nowrap {
        white-space: normal;
    }
    .site-header {
        padding: 18px 20px;
    }
    .logo img {
        height: 44px;
    }
    .future-text-panel {
        width: 100%;
        max-width: none;
    }
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .mobile-nav-toggle {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 260px;
        max-width: 75vw;
        background: rgba(248, 246, 238, 0.98);
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transform: translateX(100%);
        transition: transform 0.35s ease;
        z-index: 1000;
        display: flex;
        align-items: center;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 32px;
    }
    .main-nav a {
        font-size: 16px;
    }
    .features-bar {
        flex-wrap: wrap;
        gap: 20px;
    }
    .feature-item {
        width: 45%;
    }
    .feature-item::after {
        display: none;
    }
    .contact-card, .contact-logo-card {
        min-width: 100%;
    }
    .footer-bar {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .footer-col {
        flex-direction: column;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(170, 190, 120, 0.3);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    color: #1B2A18;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    stroke: #1B2A18;
    transition: transform 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    background-color: #ffffff;
}

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

.back-to-top:active {
    transform: translateY(-3px) scale(0.96);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }
}
