@import url('https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Calibrated Earthy Tones Palette */
    --primary-color: #264025;
    /* Dark Forest Green */
    --primary-hover: #1e331d;
    --primary-light: rgba(38, 64, 37, 0.08);
    --accent-color: #AD6B4B;
    /* Terracotta Accent */
    --accent-hover: #8e583d;
    --beige-light: #F8F5F0;
    /* Slightly lighter for better text contrast */
    --beige-sand: #D5C2AD;
    /* Deeper Sand for better button visibility */
    --beige-dark: #B9AB99;
    /* Stronger borders */
    --text-deep: #0D160D;
    /* Near Black Green for absolute legibility */
    --text-earthy: #5D3828;
    /* Richer Brown for secondary text on light bgs */
    --muted-green: #6B7358;
    /* Slightly deeper muted green */
    --white: #FFFAF6;
    /* Warm Off-white */

    /* Spacing & Transitions */
    --section-padding: 60px;
    --container-padding: 20px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);

    /* Legacy Mapping (supporting existing classes) */
    --dark-navy: var(--primary-color);
    --text-color: var(--text-deep);

    /* Typography */
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
}

@media (min-width: 992px) {
    :root {
        --section-padding: 100px;
    }
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

img,
.site-logo,
.footer-logo {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-deep);
    line-height: 1.6;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--section-padding) 0;
}

/* Grid System (Mobile First) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.align-items-center {
    align-items: center;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

@media (min-width: 992px) {
    .col-lg-5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .col-lg-7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

.grid-2,
.grid-4,
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .grid-2 {
        gap: 50px;
    }
}

/* Global Classes */
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

.text-center {
    text-align: center;
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--beige-sand);
    color: var(--primary-color);
    border: 2px solid var(--beige-dark);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(38, 64, 37, 0.25);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.btn:hover .icon-box {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-secondary:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover .icon-box {
    transform: translateX(3px);
}

.icon-box {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    font-size: 12px;
}

.btn-secondary .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: var(--white);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.main-header.scrolled {
    padding: 10px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-navy);
}

@media (min-width: 992px) {
    .logo a {
        font-size: 32px;
    }
}

.site-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

@media (min-width: 992px) {
    .site-logo {
        height: 60px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: block;
    border: none;
    background: transparent;
    font-size: 24px;
    color: var(--dark-navy);
    cursor: pointer;
    z-index: 1100;
    transition: var(--transition);
}

.mobile-menu-toggle.active {
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 1050;
}

.nav-menu.active {
    right: 0;
}

.nav-menu a {
    font-weight: 600;
    color: var(--dark-navy);
    font-size: 20px;
    position: relative;
    padding-bottom: 5px;
}

@media (min-width: 992px) {
    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        gap: 30px;
        background: transparent;
        box-shadow: none;
    }

    .nav-menu a {
        font-size: 16px;
    }
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 375px) {
    .header-btns {
        gap: 8px;
    }
}

@media (max-width: 991px) {
    .header-btns .btn-primary {
        display: none;
    }
}

/* Page Content Container */
.main-content {
    background: var(--white);
    margin-top: 100px;
    /* Space for fixed header */
}

@media (min-width: 992px) {
    .main-content {
        margin-top: 130px;
    }
}

/* Hero Section */
.hero {
    padding: 0 0 40px;
}

@media (min-width: 992px) {
    .hero {
        padding: 20px 0 80px;
    }
}

.hero-inner {
    background: var(--primary-color);
    margin: 0 10px;
    border-radius: 30px;
    padding: 40px 0;
    /* Reduced from 80px */
    overflow: hidden;
    position: relative;
}

@media (min-width: 768px) {
    .hero-inner {
        margin: 0 30px;
        padding: 60px 0;
        /* Reduced from 80px */
    }
}

@media (min-width: 992px) {
    .hero-inner {
        margin: 0 50px;
        border-radius: 40px;
        padding: 80px 0;
        /* Reduced from 100px */
    }
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
}

@media (min-width: 992px) {
    .hero-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 0 60px;
        gap: 0;
    }
}

.hero-content {
    width: 100%;
    z-index: 5;
}

@media (min-width: 992px) {
    .hero-content {
        flex: 1.2;
    }
}

.google-badge {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 6px 15px;
    border-radius: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 12px;
}

@media (min-width: 768px) {
    .google-badge {
        padding: 6px 20px;
        font-size: 14px;
        margin-bottom: 25px;
        gap: 10px;
    }
}

.google-badge .stars {
    color: #FF8159;
}

.hero-content h1 {
    font-size: 32px;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 42px;
    }
}

@media (min-width: 992px) {
    .hero-content h1 {
        font-size: 50px;
        line-height: 55px;
        margin-bottom: 30px;
        max-width: 650px;
        letter-spacing: -1.5px;
    }
}

.hero-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 16px;
        margin-bottom: 40px;
        max-width: 580px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 992px) {
    .hero-content p {
        margin-left: 0;
        margin-right: 0;
    }
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

@media (max-width: 320px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .hero-btns {
        justify-content: flex-start;
    }
}

.hero .btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.hero .btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero .btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color) !important;
    border-color: var(--white);
    transform: translateY(-3px);
}

.hero .btn-secondary:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

/* Hero Content Slider Styles */
.hero-slider {
    position: relative;
    min-height: 280px;
    margin-bottom: 30px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.8s;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Slide Children Animations */
.hero-slide h1 {
    opacity: 0;
    transform: translateY(30px);
}

.hero-slide p {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(5px);
}

.hero-slide.active h1 {
    animation: h1Reveal 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide.active p {
    animation: pReveal 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

/* Exit Animations */
.hero-slide:not(.active) h1 {
    animation: contentExit 0.6s ease forwards;
}

.hero-slide:not(.active) p {
    animation: contentExit 0.6s ease forwards;
}

@keyframes h1Reveal {
    0% {
        opacity: 0;
        transform: translateY(100%);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        letter-spacing: -2px;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        letter-spacing: -1.5px;
    }
}

@keyframes pReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(8px);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes contentExit {
    to {
        opacity: 0;
        transform: scale(0.95);
        filter: blur(5px);
    }
}

@media (max-width: 991px) {
    .hero-slider {
        min-height: 220px;
    }

    @keyframes h1Reveal {
        0% {
            opacity: 0;
            transform: translateY(20px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* --- Mobile-First & Ultra-Narrow Responsiveness (< 480px, < 320px) --- */

@media (max-width: 480px) {

    /* Global Section Padding */
    .section-padding {
        padding: 50px 0 !important;
    }

    .container {
        padding: 0 15px !important;
    }

    /* Hero Responsive Fixes */
    .hero-container {
        padding: 0 10px !important;
        gap: 25px !important;
    }

    .hero-content h1 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .hero-slider {
        min-height: auto !important;
        margin-bottom: 20px !important;
    }

    .hero-btns {
        flex-direction: column !important;
        width: 100% !important;
        gap: 12px !important;
        align-items: center !important;
    }

    .hero-btns .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 12px 20px !important;
    }

    /* Floating Badges Adjustments */
    .floating-badge {
        padding: 6px 10px !important;
        font-size: 9px !important;
    }

    .badge-icon {
        width: 25px !important;
        height: 25px !important;
        font-size: 10px !important;
    }

    /* Services Section */
    .service-focus {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }

    /* Approach Section */
    .approach-item {
        padding: 15px !important;
    }

    .approach-number {
        font-size: 32px !important;
    }

    /* Contact Form */
    .contact-dark-form {
        padding: 15px !important;
    }

    .form-group-dark input,
    .form-group-dark select,
    .form-group-dark textarea {
        padding: 10px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 320px) {

    /* Critical Fixes for 300px width */
    .hero-content h1 {
        font-size: 24px !important;
    }

    .hero-content p {
        font-size: 13px !important;
    }

    /* Shrink floating badges to prevent overlap or hide them */
    .floating-badge {
        display: none !important;
    }

    .google-badge {
        padding: 4px 10px !important;
        font-size: 10px !important;
    }

    /* Founder Section Clean up for 300px */
    .founder-badge {
        position: static !important;
        margin: 5px auto !important;
        display: flex !important;
        width: fit-content !important;
    }

    .founder-image-col {
        margin-bottom: 20px !important;
    }

    .founder-title {
        font-size: 14px !important;
    }
}

/* Section Backgrounds (Wellness Color Flow) */
#about {
    background-color: #F8FAFC;
}

.founder-section {
    background-color: #F8FAFC;
}

.stats-section {
    background-color: var(--white);
}

.services-section {
    background-color: var(--sage-bg);
}

.hero-image-wrapper {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) {
    .hero-image-wrapper {
        flex: 1;
    }
}

.hero-image-container {
    position: relative;
    z-index: 2;
    width: 280px;
    height: 350px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    background: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: blob-morph 8s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 768px) {
    .hero-image-container {
        width: 380px;
        height: 480px;
    }
}

@media (min-width: 992px) {
    .hero-image-container {
        width: 480px;
        height: 580px;
    }
}

.main-hero-img {
    width: 100%;
    height: 105%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .main-hero-img {
    transform: scale(1.05);
}

/* Creative Decorative Elements */
.hero-shape-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(162, 123, 92, 0.15);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
    top: 10%;
    right: 10%;
    animation: float-slow 10s ease-in-out infinite;
}

.hero-shape-blob.secondary {
    width: 200px;
    height: 200px;
    background: rgba(44, 57, 48, 0.1);
    top: auto;
    bottom: 10%;
    left: 10%;
    animation: float-slow 12s ease-in-out infinite reverse;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    animation: float-badge 4s ease-in-out infinite;
    pointer-events: auto;
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text span {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-navy);
}

.badge-text small {
    font-size: 11px;
    color: var(--text-color);
}

.badge-1 {
    top: 15%;
    right: -5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 25%;
    left: -5%;
    animation-delay: 1s;
}

.badge-3 {
    top: 45%;
    right: -15%;
    animation-delay: 2s;
}

@media (max-width: 991px) {
    .floating-badge {
        padding: 8px 15px;
    }

    .badge-1 {
        top: 10%;
        right: 0;
    }

    .badge-2 {
        bottom: 15%;
        left: 0;
    }

    .badge-3 {
        display: flex;
        top: 20%;
        right: 0;
    }
}

@media (max-width: 480px) {
    .badge-1 {
        right: 5px;
    }

    .badge-2 {
        left: 5px;
    }
}

/* Keyframes */
@keyframes blob-morph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 40px) scale(0.9);
    }
}

/* Slanted Arrow Icon */
.icon-box i {
    transform: rotate(-45deg);
}


/* Section Common */
.section-padding {
    padding: 100px 0;
}

#services {
    background-color: var(--sage-bg);
}

#approach {
    background-color: var(--white);
}

#pricing {
    background-color: #F8FAFC;
}

.subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 50px;
    line-height: 55px;
    color: var(--dark-navy);
    margin-bottom: 30px;
    font-weight: 600;
}

.section-header h2 span {
    color: var(--primary-color);
}

/* About Grid Story Redesign */
.about-grid-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 0;
    /* Removed to control spacing with full-width quote */
}

@media (min-width: 992px) {
    .about-grid-story {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: stretch;
        /* Keep columns equal height */
        margin-bottom: 0;
        /* Removed for consistent card spacing */
    }
}

.story-left,
.story-right {
    display: flex;
    flex-direction: column;
}


.story-title {
    font-size: 28px;
    line-height: 1.3;
    color: var(--dark-navy);
    font-weight: 700;
    margin-bottom: 30px;
}

.story-title {
    font-size: 50px;
    line-height: 55px;
}


@media (max-width: 991px) {
    .story-title {
        font-size: 32px;
        line-height: 1.3;
        word-break: break-word;
        /* Prevent overflow */
        padding-right: 15px;
        /* Safety padding */
    }
}

@media (max-width: 320px) {
    .story-title {
        font-size: 24px;
        /* Significantly reduce on 300px */
        line-height: 1.3;
        word-break: break-word;
    }
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    white-space: nowrap;
}

/* Highlight underline removed as per request */
.highlight-text::after {
    display: none;
}

/* Brand Acronym Styling */
.brand-acronym {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 25px;
}

@media (min-width: 992px) {
    .brand-acronym {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .brand-acronym {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.acronym-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.letter {
    font-size: 32px;
    /* Smaller for mobile */
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    opacity: 0.3;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .letter {
        font-size: 40px;
    }
}

.acronym-item:hover .letter {
    opacity: 1;
    transform: scale(1.1);
}

.word-info strong {
    display: block;
    font-size: 14px;
    /* Smaller for mobile */
    color: var(--dark-navy);
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .word-info strong {
        font-size: 16px;
    }
}

.word-info p {
    font-size: 13px;
    color: #64748B;
    line-height: 1.4;
    margin: 0;
}

/* Story Right - Cards & Quote */
.story-content-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 0;
    /* Removed extra margin to fix spacing with full-width quote */
}

.strategic-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.story-card-item {
    background: #FFFAF6;
    border: 1px solid rgba(162, 123, 92, 0.1);
    padding: 15px 20px;
    /* More compact for mobile */
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .story-card-item {
        padding: 20px 25px;
        gap: 20px;
    }
}

.story-card-item:hover {
    background: var(--white);
    box-shadow: 0 15px 30px rgba(162, 123, 92, 0.08);
    transform: translateX(10px);
}

.card-icon {
    width: 45px;
    height: 45px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(162, 123, 92, 0.1);
    flex-shrink: 0;
}

.card-text p {
    font-size: 14px;
    color: #4A5567;
    margin: 0;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .card-text p {
        font-size: 15px;
    }
}


/* Quote Card Specific Styling */
.quote-card .card-text p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .quote-card .card-text p {
        font-size: 16px;
    }
}

.quote-attribution {
    margin-top: 12px;
    font-size: 15px;
    /* Match quote p size */
    font-style: italic;
    /* Match quote style */
    color: var(--primary-color);
    font-family: inherit;
    /* Ensure same font family */
}

@media (min-width: 768px) {
    .quote-attribution {
        font-size: 16px;
        /* Match quote desktop size */
    }
}

.quote-attribution strong {
    font-weight: 600;
    /* Keep bold for name as per standard, or remove if user wants EXACT same. User said "same font", bold is usually a variant. I'll keep bold for name distinctness but match family/style. */
    font-style: italic;
}

/* Full Width Quote Card */
.full-width-quote {
    margin-top: 15px;
    /* Matches mobile grid gap */
    margin-bottom: 50px;
    width: 100%;
}

@media (min-width: 768px) {
    .full-width-quote {
        margin-top: 20px;
        /* Matches tablet/desktop grid gap */
        margin-bottom: 60px;
    }
}

@media (min-width: 768px) {
    .full-width-quote {
        margin-bottom: 60px;
    }
}

@media (min-width: 992px) {
    .full-width-quote {
        margin-bottom: 70px;
    }
}

/* Founder Pull Quote */
.founder-pull-quote {
    background: var(--dark-navy);
    padding: 25px;
    border-radius: 20px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
}

@media (min-width: 768px) {
    .founder-pull-quote {
        padding: 30px;
        border-radius: 25px;
        margin-bottom: 60px;
    }
}

@media (min-width: 992px) {
    .founder-pull-quote {
        padding: 35px;
        margin-bottom: 70px;
    }
}

.quote-signature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 12px;
}

@media (min-width: 768px) {
    .quote-signature {
        gap: 20px;
        margin-top: 15px;
    }
}

.digital-signature {
    font-family: 'Mrs Saint Delafield', cursive;
    font-size: 28px;
    color: var(--primary-color);
    opacity: 0.8;
}

@media (min-width: 768px) {
    .digital-signature {
        font-size: 32px;
    }
}

@media (min-width: 992px) {
    .digital-signature {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .quote-signature {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.founder-pull-quote::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.quote-icon {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .quote-icon {
        font-size: 28px;
        margin-bottom: 15px;
    }
}

.founder-pull-quote blockquote {
    font-size: 15px;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .founder-pull-quote blockquote {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 18px;
    }
}

@media (min-width: 992px) {
    .founder-pull-quote blockquote {
        font-size: 18px;
    }
}

.quote-founder {
    display: flex;
    flex-direction: column;
}

.quote-founder strong {
    font-size: 13px;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .quote-founder strong {
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .quote-founder strong {
        font-size: 16px;
    }
}

.quote-founder span {
    font-size: 11px;
    opacity: 0.7;
}

@media (min-width: 768px) {
    .quote-founder span {
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    .quote-founder span {
        font-size: 14px;
    }
}

.about-main-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 300px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .about-main-image {
        height: 450px;
        border-radius: 35px;
    }
}

@media (min-width: 992px) {
    .about-main-image {
        border-radius: 40px;
        height: 570px;
        margin-bottom: 60px;
    }
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-video-pill {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    padding: 6px 20px 6px 6px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .play-video-pill {
        gap: 15px;
        padding: 8px 30px 8px 8px;
    }
}

.play-circle {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@media (min-width: 768px) {
    .play-circle {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}

.play-video-pill span {
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
}

@media (min-width: 768px) {
    .play-video-pill span {
        font-size: 16px;
    }
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .about-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-top: 40px;
    }
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

@media (min-width: 768px) {
    .about-feature-item {
        gap: 20px;
    }
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(255, 129, 89, 0.2);
}

@media (min-width: 768px) {
    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
}

.feature-text h4 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--dark-navy);
}

.feature-text p {
    font-size: 15px;
    line-height: 1.6;
    color: #4A5567;
}

@media (min-width: 992px) {
    .feature-text p {
        font-size: 16px;
        max-width: 300px;
    }
}

/* Stats */
.stat-item h3 {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 800;
}

.stat-item p {
    font-weight: 600;
    color: var(--dark-navy);
}

/* Why Choose Us & Who We Help */
.choose-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    border: 1px solid var(--gray-200);
}

.feature-item h4 {
    font-size: 20px;
    color: var(--dark-navy);
    margin-bottom: 5px;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industry-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.industry-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.industry-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-navy);
}

.industry-card:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.industry-card:hover i,
.industry-card:hover h4,
.industry-card:hover p {
    color: var(--white);
}

/* Testimonials */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.quote {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.3;
}

.testimonial-card p {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 35px;
    color: var(--dark-navy);
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.client-info h4 {
    margin-bottom: 0px;
    color: var(--dark-navy);
}

/* Footer */
.main-footer {
    background: #121d12;
    /* Deepest Forest Green */
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-300);
}

.dev-credit {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.dev-credit:hover {
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 80px;
    margin-bottom: 60px;
}

@media (max-width: 1024px) {
    .footer-grid {
        gap: 50px;
        grid-template-columns: 1.5fr 1fr 1.2fr;
    }
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .main-footer {
        padding: 60px 0 30px;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-about .logo a,
    .social-links {
        justify-content: center;
    }

    .footer-about p {
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
    }

    .footer-links ul li a:hover {
        padding-left: 0;
        color: var(--primary-color);
    }
}

.footer-about .logo a {
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.footer-about p {
    color: var(--gray-300);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-newsletter h4 {
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--gray-300);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

/* Services Refined */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

#services .services-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    #services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    #services .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

#services .services-grid:not(.expanded) .service-item:nth-child(n+4) {
    display: none;
}

.services-btn-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.service-item {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 350px;
    transition: var(--transition);
}

@media (min-width: 992px) {
    .service-item {
        border-radius: 40px;
        height: 440px;
    }
}

.service-image {
    width: 100%;
    height: 100%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(180deg, rgba(12, 21, 36, 0) 0%, rgba(12, 21, 36, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 60%;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .service-content {
        padding: 30px;
    }
}

.service-content h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: capitalize;
}

@media (min-width: 768px) {
    .service-content h3 {
        font-size: 24px;
        margin-bottom: 10px;
    }
}



.state-counter {
    background: var(--white);
}

.state-counter .section-title {
    max-width: 450px;
}

.state-counter .subtitle {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.state-counter .section-title h2 {
    font-size: 50px;
    line-height: 55px;
    color: #0C1524;
    font-weight: 600;
    margin-bottom: 35px;
}

.counter-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.grid-item {
    height: 190px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.counter-box {
    background: #F8FAFC;
    padding: 20px;
    transition: var(--transition);
}

.counter-box:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.counter-box h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0C1524;
    margin-bottom: 0px;
}

.counter-box p {
    font-size: 16px;
    color: #4A5567;
    margin-top: 5px;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.state-counter .btn-default {
    background: var(--primary-color);
    color: var(--white);
    padding: 15px 25px 15px 60px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-weight: 700;
    font-size: 15px;
    text-transform: none;
    transition: var(--transition);
}

.state-counter .btn-default .icon-box {
    position: absolute;
    left: 8px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}


/* Why Choose Us Refined */
.why-choose-us {
    background: #F5F7FA;
}

.why-choose-us .header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    gap: 40px;
}

.why-choose-us .header-left {
    max-width: 500px;
}

.why-choose-us .header-right {
    flex: 1;
    max-width: 500px;
}

.why-choose-us .header-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #4A5567;
}

.why-choose-main-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    height: 600px;
    margin-bottom: 50px;
}

.why-choose-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlays */
.overlay-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: var(--primary-color);
    color: var(--white);
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(255, 129, 89, 0.3);
    z-index: 2;
}

.overlay-badge h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.overlay-badge p {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
}

.overlay-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 30px;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.overlay-info h3 {
    font-size: 26px;
    line-height: 1.3;
    color: #0C1524;
    font-weight: 600;
    margin-bottom: 15px;
}

.overlay-info p {
    font-size: 15px;
    color: #4A5567;
    margin-bottom: 0;
}

/* Approach Section */
.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .approach-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.approach-item {
    height: 100%;
}

.approach-content {
    position: relative;
    background: var(--primary-color);
    height: 100%;
    padding: 30px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 280px;
}

@media (min-width: 768px) {
    .approach-content {
        padding: 40px 30px;
        min-height: 350px;
    }
}

.approach-number {
    color: var(--beige-sand);
    opacity: 0.35;
    /* Increased opacity for visibility */
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1;
}

@media (min-width: 768px) {
    .approach-number {
        font-size: 60px;
        margin-bottom: 20px;
    }
}

.approach-content h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 15px;
}

.approach-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid transparent;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 40px;
    }
}

.pricing-item.featured .pricing-card {
    border: 2px solid var(--primary-color);
}

@media (min-width: 992px) {
    .pricing-item.featured .pricing-card {
        transform: scale(1.05);
        z-index: 2;
    }
}

.popular-badge {
    background: var(--primary-color);
    color: #fff;
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    align-self: flex-start;
}

.pricing-card h3 {
    color: var(--dark-navy);
    font-size: 20px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .pricing-card h3 {
        font-size: 24px;
    }
}

.price {
    color: var(--primary-color);
    font-size: 28px;
    margin: 15px 0;
}

@media (min-width: 768px) {
    .price {
        font-size: 36px;
        margin: 20px 0;
    }
}

.price span {
    font-size: 14px;
    color: #4A5567;
}

@media (min-width: 768px) {
    .price span {
        font-size: 16px;
    }
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    margin-bottom: 12px;
    color: #4A5567;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
}

.pricing-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: auto;
}

/* CTA Banner */
.cta-banner {
    background: var(--beige-sand);
    padding: 80px 0;
    border-top: 1px solid var(--beige-dark);
    border-bottom: 1px solid var(--beige-dark);
}

.cta-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

@media (min-width: 992px) {
    .cta-banner-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.cta-banner-content h2 {
    color: var(--text-deep);
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    max-width: 700px;
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .cta-banner-content h2 {
        font-size: 34px;
    }
}

@media (min-width: 992px) {
    .cta-banner-content h2 {
        font-size: 40px;
    }
}

.btn-white {
    background: var(--accent-color);
    color: var(--white) !important;
    padding: 15px 35px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    position: relative;
    font-weight: 700;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.btn-white:hover {
    background: var(--accent-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-white .icon-box {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    margin-left: 15px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

/* Services Grid Responsiveness */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-us .header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .why-choose-main-image {
        height: 450px;
    }

    .overlay-info {
        position: relative;
        bottom: 0;
        left: 0;
        max-width: 100%;
        margin-top: -50px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .why-choose-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-stats {
        grid-template-columns: 1fr;
    }

    .cta-banner-content h2 {
        font-size: 28px;
    }
}

/* Who We Help Section */
.who-we-help {
    background: var(--white);
}

.we-help-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .we-help-content {
        gap: 30px;
    }
}

.we-help-item {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 20px;
    transition: var(--transition);
}

@media (min-width: 480px) {
    .we-help-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
}

@media (min-width: 768px) {
    .we-help-item {
        flex: 0 0 calc(33.333% - 20px);
        max-width: calc(33.333% - 20px);
    }
}

@media (min-width: 1200px) {
    .we-help-item {
        flex: 0 0 calc(20% - 24px);
        max-width: calc(20% - 24px);
    }
}

.who-we-help .icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(255, 129, 89, 0.2);
}

@media (min-width: 768px) {
    .who-we-help .icon-box {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }
}

.we-help-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #0C1524;
}

@media (min-width: 768px) {
    .we-help-item h3 {
        font-size: 18px;
    }
}

.we-help-item:hover .icon-box {
    transform: translateY(-10px);
    background: #0C1524;
}

/* Testimonials Section */
.testim.hero-inner {
    background-color: var(--beige-light);
    position: relative;
    overflow: hidden;
}

.testimonial-content-left {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .testimonial-content-left {
        margin-bottom: 0;
    }
}

.testimonial-content-left p {
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-nav {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

@media (min-width: 768px) {
    .nav-btn {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #F0F2F5;
    height: 100%;
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: 40px;
        border-radius: 30px;
    }
}

.testimonials .author-info h4 {
    font-size: 18px;
    font-weight: 700;
}

.testimonials .card-body p {
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}

@media (min-width: 768px) {
    .testimonials .card-body p {
        font-size: 18px;
        line-height: 1.8;
    }
}

/* Contact Section */
.contact-section {
    background: #fff;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
}

.contact-form-box {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    border: 1px solid #F0F2F5;
}

@media (min-width: 768px) {
    .contact-form-box {
        padding: 40px;
    }
}

@media (min-width: 992px) {
    .contact-form-box {
        padding: 50px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-navy);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E0E5EB;
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-color);
    background: #F8FAFC;
    transition: all 0.3s ease;
}

@media (min-width: 768px) {
    .form-control {
        padding: 15px 20px;
        font-size: 16px;
    }
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 129, 89, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

@media (min-width: 768px) {
    textarea.form-control {
        min-height: 150px;
    }
}

/* --- Contact Section Styles Ended --- */

/* --- Founder Section: Layout, Animations & Creative Polish --- */
.founder-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.founder-image-col {
    position: relative;
    opacity: 0;
}

.founder-image-col::after {
    content: 'IMPACT';
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 120px;
    font-weight: 900;
    color: rgba(162, 123, 92, 0.03);
    z-index: -1;
    pointer-events: none;
    letter-spacing: 20px;
    font-family: var(--font-main);
}

.founder-info-col {
    opacity: 0;
}

@media (min-width: 992px) {
    .founder-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .founder-image-col {
        flex: 0 0 50%;
        position: sticky;
        top: 120px;
        z-index: 10;
        max-width: 600px;
    }

    .founder-info-col {
        flex: 1;
        padding-top: 20px;
    }
}

.founder-img-shape {
    position: relative;
    z-index: 1;
}

.founder-img-shape::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120%;
    height: 110%;
    background: radial-gradient(circle at center, rgba(162, 123, 92, 0.2) 0%, rgba(255, 255, 255, 0) 80%);
    z-index: -1;
    border-radius: 50%;
    transform: scale(0.8);
    transition: transform 0.5s ease;
    animation: liquidMorph 12s ease-in-out infinite, float-slow 20s ease-in-out infinite !important;
    filter: blur(20px);
}

.founder-image-col:hover .founder-img-shape::before {
    transform: scale(1);
}

.founder-badge {
    animation: badgeFloating 6s ease-in-out infinite;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-badge:last-child {
    animation-name: badgeFloatingAlt;
    animation-duration: 8s;
}

.founder-badge:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
    z-index: 100;
}

.decorative-glass {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    z-index: -1;
    animation: float-slow 8s ease-in-out infinite;
}

@media (min-width: 992px) {
    .founder-img-shape::before {
        top: -60px;
        left: -60px;
        width: 140%;
        height: 130%;
        opacity: 0.6;
    }

    .decorative-glass {
        width: 150px;
        height: 150px;
        top: -40px;
        right: -60px;
    }

    /* Restore positioning via classes */
    .badge-top {
        top: 40px !important;
        right: -30px !important;
        bottom: auto !important;
        left: auto !important;
    }

    .badge-bottom {
        bottom: 40px !important;
        left: -30px !important;
    }
}

/* Animations Core */
@keyframes revealStunning {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes liquidMorph {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 45% 55% 50% 50% / 50% 45% 55% 50%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    75% {
        border-radius: 55% 45% 40% 60% / 45% 55% 60% 40%;
    }
}

@keyframes badgeFloating {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes badgeFloatingAlt {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(15px) rotate(-2deg);
    }
}

.founder-reveal-active .founder-image-col {
    animation: revealStunning 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.founder-reveal-active .founder-info-col {
    animation: revealStunning 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.2s;
}

@media (max-width: 991px) {
    .founder-image-col::after {
        display: none;
    }
}

@media (max-width: 991px) {

    /* Simplify founder image for mobile & tablet */
    .founder-photo {
        width: 280px !important;
        height: 280px !important;
        object-fit: cover !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
        margin-bottom: 15px !important;
    }

    /* Hide decorative elements on mobile */
    .founder-img-shape::before,
    .decorative-glass {
        display: none !important;
    }

    .founder-image-col {
        text-align: center !important;
        margin-bottom: 30px !important;
    }

    /* Redesign founder badges for mobile - horizontal compact layout */
    .founder-section .founder-badge {
        position: relative !important;
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 8px 15px !important;
        margin: 8px 5px !important;
        background: linear-gradient(135deg, #2C3930 0%, #3d4f42 100%) !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .founder-section .founder-badge .years {
        font-size: 20px !important;
        font-weight: 700 !important;
        color: #FF8159 !important;
        line-height: 1 !important;
    }

    .founder-section .founder-badge .text {
        font-size: 11px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        line-height: 1.2 !important;
    }

    .founder-img-shape {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Container for badges below image */
    .founder-img-shape::after {
        content: '' !important;
        display: block !important;
        width: 100% !important;
        height: 10px !important;
    }
}

/* --- End of Founder Section --- */

/* =========================================
   UNIVERSAL SUB-300PX SAFETY NET
   ========================================= */
@media (max-width: 299px) {

    /* Prevent any fixed width from breaking layout */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Ensure text wraps to avoid scrolling */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    a {
        word-break: break-word !important;
        hyphens: auto !important;
    }

    /* Allow buttons to wrap text if too long */
    .btn {
        white-space: normal !important;
        height: auto !important;
        min-height: 40px !important;
    }

    /* Minimal padding for maximum content space */
    .container {
        padding: 0 8px !important;
    }

    /* Founder Badges safety - HIDE on ultra-narrow screens */
    .founder-section .founder-badge {
        display: none !important;
        /* Too large for < 300px screens */
    }

    /* Ensure image column pushes content down */
    .founder-image-col {
        margin-bottom: 30px !important;
        height: auto !important;
        display: block !important;
    }

    .founder-img-shape {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        height: auto !important;
    }

    .founder-photo {
        position: relative !important;
        /* Ensure img is in flow */
        margin-bottom: 10px !important;
        max-width: 100% !important;
        height: auto !important;
    }

    /* Navigation Safety */
    .nav-menu {
        width: 100% !important;
        max-width: 100% !important;
        right: -100% !important;
        /* Keep logic */
    }

    .nav-menu.active {
        right: 0 !important;
    }
}

/* =========================================
   ULTRA-NARROW DEVICE OPTIMIZATION (< 320px)
   ========================================= */
@media (max-width: 320px) {

    /* Global Resets */
    html,
    body {
        overflow-x: hidden;
        width: 100%;
    }

    /* Safety Net for 300-320px Text */
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    a,
    li,
    strong,
    em {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
    }

    .container {
        padding: 0 10px !important;
    }

    .section-padding {
        padding: 30px 0 !important;
        /* Reduced from 50px */
    }

    /* Hero Section Spacing */
    .main-content {
        margin-top: 80px !important;
        /* Reduce gap from header */
    }

    .hero-content h1 {
        font-size: 24px !important;
        line-height: 1.1 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 15px !important;
        max-width: 100% !important;
    }

    .hero-content p {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 20px !important;
    }

    /* Hero Buttons */
    .hero-btns {
        flex-direction: column !important;
        width: 100% !important;
        gap: 8px !important;
    }

    .hero-btns .btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 10px 15px !important;
        font-size: 14px !important;
        min-height: 44px;
        /* Ensure touch target */
    }

    /* Founder Section */
    .floating-badge {
        display: none !important;
    }

    .founder-image-col::after {
        font-size: 40px !important;
        left: -10px !important;
        opacity: 0.03 !important;
    }

    .founder-image-col {
        margin-bottom: 20px !important;
    }

    /* Titles */
    .section-header h2,
    .story-title {
        font-size: 22px !important;
        line-height: 1.2 !important;
        margin-bottom: 15px !important;
    }

    .subtitle {
        font-size: 10px !important;
        margin-bottom: 10px !important;
    }

    /* Intro Acronym Fixes */
    .brand-acronym {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .acronym-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
    }

    .letter {
        font-size: 28px !important;
    }

    .word-info strong {
        font-size: 14px !important;
    }

    .word-info p {
        font-size: 13px !important;
    }

    /* About Story Cards */
    .story-card-item {
        padding: 12px !important;
        gap: 10px !important;
    }

    .card-icon {
        width: 32px !important;
        height: 32px !important;
    }

    .card-text p {
        font-size: 13px !important;
    }

    /* Navigation */
    .nav-menu {
        max-width: 250px !important;
        padding: 15px !important;
    }

    .nav-menu a {
        font-size: 16px !important;
    }

    /* Founder Badge Mobile - Horizontal Compact Layout */
    .founder-section .founder-badge {
        position: relative !important;
        display: inline-flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 6px 12px !important;
        margin: 6px 4px !important;
        background: linear-gradient(135deg, #2C3930 0%, #3d4f42 100%) !important;
        border-radius: 20px !important;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1) !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
    }

    .founder-section .founder-badge .years {
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #FF8159 !important;
    }

    .founder-section .founder-badge .text {
        font-size: 10px !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
    }
}

/* --- End of Founder Section --- */
/* DEEP RESPONSIVENESS FIXES (300px - 500px) */
@media (max-width: 500px) {

    /* 1. Global Container Fix */
    .container {
        width: 100% !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }

    /* 2. Intro Section Fluidity */
    .about-grid-story,
    .brand-acronym,
    .vision-mission-grid,
    .story-card-item {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        /* Override any min-width */
        gap: 20px !important;
    }

    /* Force images to shrink */
    .about-main-image img,
    .founder-photo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    /* 3. Text Wrapping Safety */
    h1,
    h2,
    h3,
    .story-title {
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        max-width: 100% !important;
        font-size: clamp(24px, 6vw, 32px) !important;
    }

    /* Fix specific WORD acronym cutoff */
    .acronym-item {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Ensure body doesn't overflow */
    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
    }
}

/* FINAL REFINED FIX (Mobile & Tablet) */
@media (max-width: 500px) {
    .acronym-item {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 5px !important;
    }

    .acronym-item .word-info {
        width: 100% !important;
    }

    .container,
    .main-header,
    header {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* FORCE FOUNDER IMAGE FLUIDITY override */
@media (max-width: 991px) {
    .founder-photo {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }
}

/* REDUCE GAP AFTER FOUNDER IMAGE (Mobile) */
@media (max-width: 991px) {
    .founder-image-col {
        margin-bottom: 10px !important;
    }
}

/* HERO REFINEMENT */
.hero-content h1 {
    font-family: 'Playfair Display', serif;
}

.hero-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
}

@media (min-width: 768px) {
    .hero-content p {
        font-size: 20px;
    }
}

/* CREATIVE HERO ENHANCEMENTS */
/* 1. Highlight Text in 2nd Slide */
.highlight-text-creative {
    color: #AD6B4B;
    /* Terracotta Accent */
    font-style: italic;
    font-weight: 800;
    position: relative;
    display: inline-block;
}



/* 2. Creative Organic Hero Image Shape */
.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.main-hero-img {
    border-radius: 0;
    /* Square shape */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.main-hero-img:hover {
    transform: translateY(-5px);
}


/* 3. Center Text in Badges (since subtitles removed) */
.floating-badge .badge-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.floating-badge span {
    font-size: 15px;
    /* Slightly larger since solitary */
    line-height: 1;
}

/* Intro Title Specifics */
.story-title {
    text-align: left;
    /* Reset to left */
}

.story-title .center-word {
    display: block;
    text-align: center;
    margin: 5px 0;
    width: 100%;
}

/* FORCE SQUARE SHAPE (FINAL OVERRIDE) */
.hero-image-container img,
.hero-image-container .main-hero-img {
    border-radius: 0 !important;
    animation: none !important;
    -webkit-border-radius: 0 !important;
    -moz-border-radius: 0 !important;
    clip-path: none !important;
    shape-outside: none !important;
}

/* 4. Catchy Title Polish */
.hero-content h1 {
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.05);
}