:root {
    /* Core Theme Colors */
    --black: #000000;
    --medbe-green: #60AC38;
    --medbe-green-rgb: 96, 172, 56;
    --white: #FFFFFF;
    --gray: #A0A0A0;

    --bg-black: var(--black);
    --bg-darker: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-primary: var(--white);
    --text-secondary: var(--gray);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    --container-width: 1200px;
    --section-padding: 50px 0;

    /* Borders */
    --border-radius: 12px;
    --border-glass: 1px solid rgba(96, 172, 56, 0.4);
}

.brand-db {
    color: var(--medbe-green);
    position: relative;
    display: inline-block;
}

.brand-db::after {
    content: '';
    position: absolute;
    bottom: -0.1em;
    left: 10%;
    width: 80%;
    height: 0.4em;
    border: solid var(--medbe-green);
    border-width: 0 0 0.12em 0;
    border-radius: 50%;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-black);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

p {
    line-height: 1.6;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

section {
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Global Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.btn-primary {
    background-color: var(--medbe-green);
    color: var(--bg-black);
    border: 2px solid var(--medbe-green);
    box-shadow: 0 0 15px rgba(var(--medbe-green-rgb), 0.2);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--medbe-green);
    box-shadow: 0 0 25px rgba(var(--medbe-green-rgb), 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: var(--medbe-green);
    color: var(--medbe-green);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.navbar.scrolled {
    background: var(--bg-black);
    padding: 15px 0;
    border-bottom: 1px solid var(--medbe-green);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--medbe-green);
}

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

.nav-links a {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--medbe-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--bg-black);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(96, 172, 56, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--medbe-green);
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links a:hover {
    color: var(--medbe-green);
    transform: translateX(5px);
}

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

/* --- Animation System --- */

.animate-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-animated {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) !important;
}

.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes float-delayed {
    0% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(96, 172, 56, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(96, 172, 56, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(96, 172, 56, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.diagonal-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--bg-black);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 2;
}

.diagonal-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--bg-black);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    z-index: 2;
}


/* --- Homepage Specific Styles --- */

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-color: var(--bg-black);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(96, 172, 56, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-tagline {
    color: var(--medbe-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-visuals {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-card {
    position: absolute;
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius);
    padding: 25px 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 20px;
    width: 320px;
}

.glass-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(96, 172, 56, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--medbe-green);
}

.glass-card-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.hero-card-1 {
    top: 50px;
    right: 20px;
    animation: float 6s ease-in-out infinite;
}

.hero-card-2 {
    top: 200px;
    left: 10px;
    animation: float-delayed 7s ease-in-out infinite;
}

.hero-card-3 {
    bottom: 50px;
    right: 50px;
    animation: float 8s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    color: var(--text-secondary);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--medbe-green);
    border-bottom: 2px solid var(--medbe-green);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

.about-preview {
    padding: var(--section-padding);
    background-color: var(--bg-black);
    position: relative;
    z-index: 1;
}

.about-preview .container {
    display: block;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: #111;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 4px solid var(--medbe-green);
    border-left: 4px solid var(--medbe-green);
    z-index: 0;
}

.about-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-bottom: 4px solid var(--medbe-green);
    border-right: 4px solid var(--medbe-green);
    z-index: 0;
}

.about-image-wrapper p {
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-heading);
}

/* Brand content inside the about image wrapper */
.about-brand-content {
    position: relative;
    z-index: 1;
    padding: 40px 36px;
    width: 100%;
}

.about-brand-tag {
    display: inline-block;
    color: var(--medbe-green);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 5px 14px;
    border: 1px solid rgba(96, 172, 56, 0.4);
    border-radius: 50px;
}

.about-brand-lead {
    font-family: var(--font-heading);
    font-size: 1.3rem !important;
    font-weight: 600;
    color: var(--text-primary) !important;
    line-height: 1.5;
    margin-bottom: 12px !important;
}

/* Mission sequence (Medicines → Delivery → Patient Care) */
.mission-sequence {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.mission-seq-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--medbe-green);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mission-seq-step svg {
    opacity: 0.85;
}

.mission-seq-arrow {
    color: rgba(96, 172, 56, 0.5);
    font-size: 1.4rem;
    padding-bottom: 16px;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 40px;
    font-size: 1.15rem;
}

.services-section {
    padding: var(--section-padding);
    background-color: var(--bg-darker);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.home-delivery-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.home-delivery-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.delivery-mascot {
    max-width: 420px;
    width: 100%;
    display: block;
    margin: 0 auto 40px auto;
    filter: drop-shadow(0 0 25px rgba(96, 172, 56, 0.3));
}

.delivery-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px;
    height: 100%;
}

.feature-card .service-icon {
    margin-bottom: 16px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    align-items: stretch;
}

.step-card {
    padding: 28px !important;
    height: 100% !important;
}

.step-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--medbe-green);
}

.delivery-badge {
    margin-top: 40px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.parallax-section {
    position: relative;
    padding: 150px 0;
    background-color: var(--medbe-green);
    background-image: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: var(--bg-black);
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+');
    opacity: 0.5;
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.parallax-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--medbe-green);
    text-shadow: 0 2px 15px rgba(96, 172, 56, 0.3);
}

.parallax-content p {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
}

.why-choose {
    padding: var(--section-padding);
    background-color: var(--bg-black);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    text-align: left;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--medbe-green);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 0.95rem;
}

.cta-section {
    padding: 120px 0;
    background-color: var(--bg-darker);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* --- Inner Pages Styles (About & Vision) --- */

.inner-header {
    padding: 180px 0 100px;
    background-color: var(--bg-black);
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.inner-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(96, 172, 56, 0.15), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.inner-header .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.inner-header h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
}

.inner-header p {
    font-size: 1.2rem;
}

/* Page Content Base */
.page-section {
    padding: var(--section-padding);
    background-color: var(--bg-darker);
}

/* About Us Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: var(--section-padding);
}

.about-grid:last-child {
    margin-bottom: 0;
}

.about-text-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.about-text-content p {
    margin-bottom: 20px;
}

.about-image-placeholder {
    width: 100%;
    height: 400px;
    background: #111;
    border-radius: var(--border-radius);
    border: var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-heading);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Commitment List */
.commitment-list {
    list-style: none;
    margin-top: 30px;
}

.commitment-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-primary);
    background: var(--bg-card);
    padding: 20px 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.commitment-item:hover {
    transform: translateX(10px);
    border-color: rgba(96, 172, 56, 0.4);
}

.commitment-icon {
    color: var(--medbe-green);
    display: flex;
    align-items: center;
}

/* Vision & Mission Layout */
.vm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: var(--section-padding);
}

.vm-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    text-align: center;
    transition: transform 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(96, 172, 56, 0.1);
}

.vm-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: rgba(96, 172, 56, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--medbe-green);
}

.vm-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Core Principles Matrix */
.principles-header {
    text-align: center;
    margin-bottom: 50px;
}

.principles-header h2 {
    font-size: 2.5rem;
}

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

.principle-card {
    background: var(--bg-black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    border-top: 3px solid transparent;
    transition: all 0.3s ease;
}

.principle-card:hover {
    border-top-color: var(--medbe-green);
    background: rgba(255, 255, 255, 0.02);
}

.principle-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    display: block;
    line-height: 1;
}

.principle-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

/* Responsive Overrides inner */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visuals {
        display: none;
        /* Hide complex visuals on smaller screens for cleaner layout */
    }

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

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

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

    .about-grid,
    .vm-cards {
        grid-template-columns: 1fr;
    }

    .inner-header h1 {
        font-size: 2.5rem;
    }
}

/* =============================================
   NEW LAYOUT COMPONENTS – Homepage Expansion
   ============================================= */

/* ----- Hero: 6-Card Two-Column Layout ----- */
.hero-visuals-6 {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-start;
    height: auto;
    position: static;
}

.hero-col-a,
.hero-col-b {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-col-b {
    margin-top: 40px;
    /* stagger offset */
}

.hero-card-sm {
    position: static !important;
    width: 250px;
    padding: 16px 20px;
    animation: float 6s ease-in-out infinite;
}

.hero-col-b .hero-card-sm:nth-child(1) {
    animation-name: float-delayed;
    animation-duration: 7s;
}

.hero-col-b .hero-card-sm:nth-child(2) {
    animation-name: float;
    animation-duration: 8.5s;
}

.hero-col-b .hero-card-sm:nth-child(3) {
    animation-name: float-delayed;
    animation-duration: 7.5s;
}

.hero-col-a .hero-card-sm:nth-child(2) {
    animation-duration: 7s;
}

.hero-col-a .hero-card-sm:nth-child(3) {
    animation-duration: 9s;
}

.glass-card-text {
    font-size: 0.95rem;
}

/* Delay helper for scale-in animations */
.delay-150 {
    transition-delay: 150ms;
}

.delay-600 {
    transition-delay: 600ms;
}

/* ----- About: Text Block (replacing image placeholder) ----- */
.about-text-block {
    background: rgba(96, 172, 56, 0.04);
    border: 1px solid rgba(96, 172, 56, 0.15);
    border-radius: var(--border-radius);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
}

.about-text-block::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-top: 3px solid var(--medbe-green);
    border-left: 3px solid var(--medbe-green);
}

.about-text-block::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-bottom: 3px solid var(--medbe-green);
    border-right: 3px solid var(--medbe-green);
}

.about-label {
    display: inline-block;
    color: var(--medbe-green);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    padding: 5px 12px;
    border: 1px solid rgba(96, 172, 56, 0.3);
    border-radius: 50px;
}

.about-block-lead {
    font-size: 1.2rem !important;
    color: var(--text-primary) !important;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 20px !important;
    font-family: var(--font-heading);
}

/* ----- Services: 3×3 Grid ----- */
.services-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* ----- Features / Why Choose: 3×2 Grid ----- */
.features-grid-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}

/* ----- Section Label (small green pill above headings) ----- */
.section-label {
    display: inline-block;
    color: var(--medbe-green);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 5px 14px;
    border: 1px solid rgba(96, 172, 56, 0.3);
    border-radius: 50px;
}

/* ----- Home Delivery Section ----- */
.delivery-section {
    padding: var(--section-padding);
    background-color: var(--bg-darker);
    position: relative;
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.delivery-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.delivery-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.delivery-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.delivery-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.delivery-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(96, 172, 56, 0.08);
    border: 2px solid rgba(96, 172, 56, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medbe-green);
    transition: all 0.35s ease;
}

.delivery-icon-card:hover .delivery-icon-circle {
    background: rgba(96, 172, 56, 0.15);
    border-color: var(--medbe-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(96, 172, 56, 0.2);
}

.delivery-icon-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.delivery-arrow {
    color: rgba(96, 172, 56, 0.4);
    font-size: 1.6rem;
    padding-bottom: 28px;
}

/* ----- Patient Support Section ----- */
.support-section {
    padding: var(--section-padding);
    background-color: var(--bg-black);
}

.support-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: center;
}

.support-icon-col {
    display: flex;
    justify-content: center;
}

.support-icon-large {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(96, 172, 56, 0.06);
    border: 2px solid rgba(96, 172, 56, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medbe-green);
    animation: float 8s ease-in-out infinite;
    transition: all 0.35s ease;
}

.support-icon-large:hover {
    background: rgba(96, 172, 56, 0.12);
    border-color: var(--medbe-green);
    box-shadow: 0 0 30px rgba(96, 172, 56, 0.2);
}

.support-text h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
}

.support-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* =============================================
   MEDBE STORY PAGE SPECIFIC
   ============================================= */

.story-hero {
    background-color: var(--bg-black);
    padding: 180px 0 100px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-hero-container {
    position: relative;
    z-index: 2;
}

.honeycomb-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MiIgaGVpZ2h0PSI0NCIgdmlld0JveD0iMCAwIDQyIDQ0Ij4KPHBhdGggZD0iTTEwLjUgMjFMMSAyNi41bC0uNS0uNXYtMTBMMCAxNXYtMWwxLjUtLjdMMTIgNy4ybDkudCA1LjNMNDIgMTZ2MTFWMTVsLTEwLjUgNS41TDIxIDMybC0xMC41LTUuNXoiIGZpbGw9IiM2MEFDMzgiIGZpbGwtb3BhY2l0eT0iMC4wMyIvPgo8L3N2Zz4=');
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.hero-bee-illustration {
    margin: 40px auto 0;
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

.story-content-section {
    padding: var(--section-padding);
    background-color: var(--bg-darker);
}

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

.story-paragraphs p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Hexagon Cluster */
.hexagon-cluster {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hex {
    position: absolute;
    width: 140px;
    height: 160px;
    background-color: rgba(96, 172, 56, 0.05);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(96, 172, 56, 0.2);
    transition: all 0.4s ease;
}

.hex:hover {
    background-color: rgba(96, 172, 56, 0.15);
    border-color: var(--medbe-green);
    transform: scale(1.05);
    z-index: 5;
}

.hex-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--medbe-green);
}

.hex-inner span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hex-1 {
    top: 50px;
    left: 5%;
    animation: float 6s ease-in-out infinite;
}

.hex-2 {
    top: 120px;
    right: 5%;
    animation: float-delayed 7s ease-in-out infinite;
}

.hex-3 {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: float 8s ease-in-out infinite;
}

/* =============================================
   DR. DEJ AMBASSADOR SECTION
   ============================================= */

.ambassador-section {
    padding: var(--section-padding);
    background-color: var(--bg-black);
    position: relative;
    overflow: hidden;
}

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

.ambassador-points {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 30px;
}

.point-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.point-item:hover {
    transform: translateX(10px);
    border-color: rgba(96, 172, 56, 0.4);
}

.point-icon-wrap {
    color: var(--medbe-green);
    background: rgba(96, 172, 56, 0.1);
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.point-letter {
    color: var(--medbe-green);
    font-size: 1.8rem;
    font-weight: 700;
}

.point-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.ambassador-closing {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ambassador-closing p {
    margin-bottom: 5px;
}

.closing-tagline {
    color: var(--medbe-green) !important;
    font-size: 0.95rem !important;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ambassador-image-placeholder {
    width: 100%;
    min-height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed rgba(96, 172, 56, 0.3);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
    padding: 40px;
    transition: all 0.3s ease;
}

.ambassador-image-placeholder:hover {
    background: rgba(96, 172, 56, 0.05);
    border-style: solid;
    border-color: var(--medbe-green);
    color: var(--medbe-green);
}

.placeholder-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

/* ----- Responsive Fixes ----- */
@media (max-width: 1024px) {

    .services-grid-3,
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .hero-visuals-6 {
        display: none;
        /* hide on tablets – revert to old layout */
    }

    .delivery-grid,
    .support-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-card-sm {
        width: 220px;
    }
}

@media (max-width: 768px) {

    .services-grid-3,
    .features-grid-3 {
        grid-template-columns: 1fr !important;
    }

    .delivery-icons {
        justify-content: flex-start;
    }

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

    .about-text-block {
        padding: 30px 24px;
    }
}

/* =============================================
   UI ENHANCEMENT – Phase 2
   All new styles for improved layout,
   Core Values, hero spacing, micro-interactions
   ============================================= */

/* ----- Hero hierarchy spacing overrides ----- */
.hero-tagline {
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 10px !important;
}

.hero-sub {
    color: var(--medbe-green);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    display: block;
}

.hero-description {
    max-width: 520px;
    margin-bottom: 32px !important;
}

/* ----- Section green divider line ----- */
.section-green-line {
    display: none !important;
}

.diagonal-divider {
    display: none !important;
}

/* ----- Hero cards — glow border on hover ----- */
.hero-card-sm {
    position: static !important;
    width: 240px;
    padding: 16px 20px;
    animation: float 6s ease-in-out infinite;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}

.hero-card-sm:hover {
    border-color: var(--medbe-green) !important;
    box-shadow: 0 0 20px rgba(96, 172, 56, 0.3), 0 8px 24px rgba(0, 0, 0, 0.4) !important;
    transform: translateY(-4px) !important;
}

.hero-card-sm:hover .glass-card-icon {
    animation: icon-pulse-sm 0.5s ease;
}

@keyframes icon-pulse-sm {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.2) rotate(-6deg);
    }

    70% {
        transform: scale(1.1) rotate(4deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* ============================================================
   GLOBAL AMBIENT ORBS THEME
   ============================================================ */
.ambient-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    animation: orb-drift 20s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(96, 172, 56, 0.20);
    animation-delay: 0s;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: rgba(45, 114, 210, 0.15);
    animation-delay: -10s;
}

/* Perfect Background Sync - Hiding Legacy Assets */
.med-particles-canvas, .hexagon-cluster {
    display: none !important;
}

@keyframes orb-drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(10%, 10%) scale(1.1); }
}

/* ----- About section brand content improvements ----- */
.about-brand-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 14px;
}

/* ----- NAP info card redesign ----- */
.nap-info {
    margin: 24px 0;
    padding: 20px 24px;
    background: rgba(96, 172, 56, 0.04);
    border-left: 3px solid var(--medbe-green);
    border-radius: 0 8px 8px 0;
    position: relative;
    overflow: hidden;
}

.nap-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(96, 172, 56, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.nap-info h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

.nap-info p {
    font-size: 0.9rem;
    margin-bottom: 6px;
    line-height: 1.6;
}

.nap-info a {
    color: var(--medbe-green);
    text-decoration: none;
}

.nap-map-link {
    display: inline-block;
    color: var(--medbe-green) !important;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 8px;
    letter-spacing: 0.3px;
    transition: letter-spacing 0.3s ease, opacity 0.3s ease;
}

.nap-map-link:hover {
    letter-spacing: 0.8px;
    opacity: 0.85;
}

/* ----- Services: 10th card spans center on last row ----- */
.service-card-wide {
    grid-column: 2 / 3;
}

@media (max-width: 1024px) {
    .service-card-wide {
        grid-column: auto;
    }
}

/* ----- Service card enhanced hover ----- */
.service-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -80%;
    left: -60%;
    width: 60%;
    height: 240%;
    background: linear-gradient(105deg, transparent 40%, rgba(96, 172, 56, 0.07) 55%, transparent 70%);
    transform: skewX(-15deg);
    transition: left 0.55s ease, opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
}

.service-card:hover::before {
    left: 140%;
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 172, 56, 0.55);
    box-shadow: 0 12px 36px rgba(96, 172, 56, 0.12), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.service-card:hover .service-icon svg {
    animation: icon-rotate 0.5s ease;
}

@keyframes icon-rotate {
    0% {
        transform: rotate(0deg) scale(1);
    }

    30% {
        transform: rotate(-10deg) scale(1.15);
    }

    70% {
        transform: rotate(6deg) scale(1.1);
    }

    100% {
        transform: rotate(0deg) scale(1);
    }
}

/* ----- Feature items improved hover ----- */
.feature-item {
    border-radius: var(--border-radius);
    transition: background 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    background: rgba(96, 172, 56, 0.04);
    transform: translateY(-4px);
}

.feature-item:hover .feature-icon svg {
    animation: icon-pulse 0.5s ease;
}

/* ----- Button micro-interactions (enhanced) ----- */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(var(--medbe-green-rgb), 0.55), 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-secondary:hover {
    box-shadow: 0 0 20px rgba(96, 172, 56, 0.2);
}

/* ----- Section header alignment ----- */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 64px;
}

.section-header .section-accent-line {
    margin: 0 auto 18px;
}

/* ----- About content section heading size ----- */
.about-content h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    line-height: 1.25;
}

/* =============================================
   CORE VALUES SECTION
   ============================================= */
.core-values-section {
    padding: var(--section-padding);
    background-color: var(--bg-darker);
    position: relative;
}

.core-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(96, 172, 56, 0.06) 0%, transparent 65%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius);
    padding: 36px 24px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    cursor: default;
}

.value-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--medbe-green), transparent);
    border-radius: 0 0 12px 12px;
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover::before {
    width: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: rgba(96, 172, 56, 0.4);
    box-shadow: 0 12px 40px rgba(96, 172, 56, 0.12);
}

.value-card:hover .value-icon-wrap svg {
    animation: icon-pulse-sm 0.5s ease;
}

.value-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(96, 172, 56, 0.08);
    border: 1px solid rgba(96, 172, 56, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--medbe-green);
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.value-card:hover .value-icon-wrap {
    background: rgba(96, 172, 56, 0.15);
    border-color: var(--medbe-green);
    transform: scale(1.08);
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* ----- Extra delay helpers ----- */
.delay-350 {
    transition-delay: 350ms;
}

.delay-450 {
    transition-delay: 450ms;
}

/* ----- Responsive: Core Values ----- */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 2.8rem !important;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .hero-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-visuals-6 {
        display: none;
    }
}

/* =============================================
   CONNECT WITH US SECTION
   ============================================= */
.connect-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-black);
}

.connect-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.connect-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
}

.connect-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px solid var(--medbe-green);
    background: transparent;
    color: var(--medbe-green);
    margin-top: 12px;
    transition: all 0.3s ease;
}

.social-icon-btn svg {
    transition: transform 0.3s ease;
}

.social-icon-btn:hover {
    background: var(--medbe-green);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(96, 172, 56, 0.3);
}

/* =============================================
   FOOTER DEVELOPER CREDIT
   ============================================= */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    margin-top: 48px;
}

.footer-dev-credit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-dev-credit a {
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    transition: color 0.3s ease, transform 0.2s ease;
}

.footer-dev-credit a:hover {
    color: var(--medbe-green);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ============================================================
   GLOBAL BACKGROUND UNIFICATION (DOM Overrides)
   ============================================================ */
html, body {
    background-color: var(--bg-black) !important;
}

/* Strip explicit background styling from major structural elements to ensure 100% transparency over the ambient orbs. */
section,
.hero,
.services-section,
.about-preview,
.delivery-section,
.core-values-section,
.support-section,
.reviews-section,
.about-section,
.cta-section {
    background-color: transparent !important;
    background-image: none !important;
}