/* Nutrify Premium Form Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --primary-light: #d1fae5;
    --secondary: #064e3b;
    --accent: #f59e0b;
    --bg-gradient: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    --card-bg: rgba(255, 255, 255, 0.95);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Background Decorations */
.bg-decoration {
    position: fixed;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.leaf-1 { top: -50px; right: -50px; width: 300px; transform: rotate(15deg); }
.leaf-2 { bottom: -80px; left: -80px; width: 350px; transform: rotate(-20deg); }

/* Form Container */
.form-container {
    max-width: 900px;
    width: 95%;
    margin: 40px auto;
}

.form-card {
    background: var(--card-bg);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(6, 78, 59, 0.1);
    position: relative;
    padding: 3rem;
}

/* Progress Stepper */
.progress-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.progress-stepper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-light);
    transform: translateY(-50%);
    z-index: 1;
}

.step-circle {
    width: 45px;
    height: 45px;
    background: #fff;
    border: 3px solid var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.step-circle.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
    transform: scale(1.15);
}

.step-circle.completed {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

/* Step Content Transitions */
.step-content {
    display: none;
    animation: slideIn 0.5s forwards ease-out;
}

.step-content.active {
    display: block;
}

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

/* Custom Input Styling */
.input-group {
    margin-bottom: 1.5rem;
}

.label-text {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.input-field {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    outline: none;
    transition: var(--transition);
    font-size: 1rem;
}

.input-field:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* Custom Select Styling (Div-based) */
.custom-select-container {
    position: relative;
    width: 100%;
    font-family: 'Outfit', sans-serif;
}

.custom-selected {
    width: 100%;
    padding: 0.8rem 1.2rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.custom-selected::after {
    content: '';
    width: 0.8rem;
    height: 0.8rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23064e3b' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: var(--transition);
}

.custom-select-container.open .custom-selected {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

.custom-select-container.open .custom-selected::after {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 100;
    display: none;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.custom-select-container.open .custom-options {
    display: block;
    animation: slideInOptions 0.3s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInOptions {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-options-header {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.custom-option {
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary);
    font-weight: 500;
}

.custom-option:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding-left: 1.5rem;
}

/* Flatpickr Premium Theme Overrides */
.flatpickr-calendar.premium-calendar {
    background: white;
    border-radius: 2rem;
    box-shadow: 0 25px 50px -12px rgba(6, 78, 59, 0.2);
    border: none;
    font-family: 'Outfit', sans-serif;
}

.flatpickr-day.selected, 
.flatpickr-day.startRange, 
.flatpickr-day.endRange, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.endRange.inRange, 
.flatpickr-day.selected:focus, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange:hover, 
.flatpickr-day.endRange:hover, 
.flatpickr-day.prevMonthDay.selected, 
.flatpickr-day.nextMonthDay.selected, 
.flatpickr-day.continue {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    border-radius: 0.75rem;
}

.flatpickr-day:hover {
    background: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    color: var(--primary-dark) !important;
    border-radius: 0.75rem;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-weight: 700;
    color: var(--secondary);
}

.flatpickr-weekday {
    color: var(--primary-dark) !important;
    font-weight: 700;
}

/* Time Picker Specifics */
.flatpickr-calendar.premium-calendar .flatpickr-time {
    padding: 10px 0;
    height: auto;
    border-top: none;
}

.flatpickr-calendar.premium-calendar .flatpickr-time input {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--secondary);
}

.flatpickr-calendar.premium-calendar .flatpickr-am-pm {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary-dark);
}

.flatpickr-calendar.premium-calendar .flatpickr-time .flatpickr-time-separator {
    color: var(--secondary);
    font-weight: 700;
}

/* Buttons */
.btn-nav {
    padding: 0.8rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-prev {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.btn-prev:hover {
    background: #c6f6d5;
    transform: translateX(-5px);
}

.btn-next {
    background: var(--primary);
    color: white;
}

.btn-next:hover {
    background: var(--primary-dark);
    transform: translateX(5px);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

/* Stylish Popup Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 78, 59, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 2.5rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.show,
.modal-overlay.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.modal-overlay.show .modal-content,
.modal-overlay.active .modal-content {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    animation: popIn 0.5s 0.2s both;
}

@keyframes popIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* Checklist Styling */
.checkbox-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.checkbox-card:hover {
    border-color: var(--primary-light);
    background: var(--primary-light);
}

.checkbox-card input:checked + span {
    color: var(--primary-dark);
}

/* Shared Layout Styles */
.main-nav {
    background: white;
    padding: 1.25rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.nav-logo:hover {
    opacity: 0.9;
}

.nav-logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    letter-spacing: -0.025em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.nav-login-btn {
    border: 1.5px solid var(--primary) !important;
    color: var(--primary) !important;
    border-radius: 50px !important;
    padding: 0.55rem 1.5rem !important;
    font-weight: 600 !important;
    margin-left: 0.5rem;
    transition: var(--transition);
    text-decoration: none !important;
    display: inline-block;
}

.nav-login-btn:hover {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2) !important;
}

/* Global CTA Buttons */
.cta-btn {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    cursor: pointer;
}

.cta-btn:hover {
    background: #10b981;
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
    color: white;
}

.cta-btn-outline {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    cursor: pointer;
}

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

.cta-btn-white-outline {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid white;
    cursor: pointer;
}

.cta-btn-white-outline:hover {
    background: white;
    color: var(--secondary);
    transform: translateY(-3px);
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.nav-mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--secondary);
}

/* Page Components */
.section-padding {
    padding: 100px 2rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Added global side padding to prevent text touching edges */
    width: 100%;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.15rem;
    color: #475569;
}

/* Hero Section */
.hero-home {
    background: linear-gradient(rgba(240, 253, 244, 0.8), rgba(220, 252, 231, 0.9)), url('logo.jpeg');
    background-size: cover;
    background-position: center;
    padding: 120px 2rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 900;
    animation: slideUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 2rem;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

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

/* Grid Components */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Highlights */
.highlights-section {
    background: white;
}

.highlight-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    padding: 1rem 2rem;
    background: var(--bg-gradient);
    border-radius: 1rem;
}

.highlight-item i {
    color: var(--primary);
}

/* Tip Section */
.tip-section {
    background: var(--secondary);
    color: white;
    text-align: center;
    border-radius: 3rem;
    padding: 4rem;
    margin: 4rem 2rem;
}

.tip-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tip-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1.5rem;
    backdrop-filter: blur(10px);
}

/* Pricing Page */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 2rem;
    border: 2px solid #f1f5f9;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 1.5rem 0;
}

.pricing-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #475569;
}

.pricing-features i {
    color: var(--primary);
}

/* Footer Extension */
.main-footer {
    background: white;
    padding: 80px 2rem 40px;
    border-top: 1px solid #f1f5f9;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.footer-info h3 {
    color: var(--secondary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    margin-top: 2rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #475569;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.footer-links a {
    display: block;
    text-decoration: none;
    color: #64748b;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-mobile-toggle {
        display: block;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-home {
        padding: 60px 1rem;
    }

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

/* Contact Page Styles */
.contact-section { 
    padding: 100px 2rem; 
    background: white; 
    position: relative; 
}

.grid-contact { 
    display: flex; 
    justify-content: center; 
    max-width: 1200px; 
    margin: 0 auto; 
}

.contact-form-container { 
    background: #ffffff; 
    padding: 4rem; 
    border-radius: 3rem; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.05); 
    border: 1px solid #f1f5f9; 
    width: 100%; 
    max-width: 700px; 
}

.contact-form-container h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

.form-row { margin-bottom: 25px; }

.form-row label { 
    display: block; 
    font-size: 0.95rem; 
    font-weight: 700; 
    color: var(--secondary); 
    margin-bottom: 10px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.form-row input, .form-row textarea { 
    width: 100%; 
    padding: 18px 25px; 
    border-radius: 1.25rem; 
    border: 2px solid #f1f5f9; 
    font-family: 'Outfit', sans-serif; 
    font-size: 1.05rem; 
    transition: all 0.3s; 
    background: #f8fafc; 
    box-sizing: border-box; 
}

.form-row input:focus, .form-row textarea:focus { 
    border-color: var(--primary); 
    outline: none; 
    box-shadow: 0 0 0 5px var(--primary-light); 
    background: white; 
}

.submit-btn-premium { 
    background: var(--secondary); 
    color: white; 
    width: 100%; 
    padding: 20px; 
    border-radius: 1.25rem; 
    font-weight: 800; 
    border: none; 
    cursor: pointer; 
    transition: all 0.3s; 
    font-size: 1.25rem;
    box-shadow: 0 10px 20px rgba(6, 78, 59, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.submit-btn-premium:hover { 
    background: #043a2e; 
    transform: translateY(-3px); 
    box-shadow: 0 15px 30px rgba(6, 78, 59, 0.25); 
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 2rem;
    }
}

/* Button & Call to Action Styles */
.cta-btn {
    background: var(--primary);
    color: white;
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.4);
    background: var(--primary-dark);
    color: white;
}

.cta-btn i {
    font-size: 1.1rem;
}

/* Secondary CTA Variant */
.cta-btn-secondary {
    background: var(--secondary);
    box-shadow: 0 15px 35px rgba(6, 78, 59, 0.2);
}

.cta-btn-secondary:hover {
    background: #043a2e;
    box-shadow: 0 25px 50px rgba(6, 78, 59, 0.3);
}

/* Premium Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: #fdfdfd;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0; /* Added padding to prevent overlap */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 1;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 4rem;
}

.hero-text-side {
    flex: 1;
    max-width: 600px;
}

.hero-image-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    animation: floatCarousel 6s ease-in-out infinite;
}

@keyframes floatCarousel {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-tag {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d9488;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    color: #1f2937;
    margin-bottom: 2rem;
    font-weight: 900;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 3rem;
    max-width: 500px;
}

.hero-socials {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
}

.hero-socials span {
    font-size: 0.9rem;
    color: #6b7280;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    background: #f3f4f6;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Decorative Leaf */
.hero-leaf {
    position: absolute;
    left: -50px;
    bottom: 10%;
    width: 250px;
    opacity: 0.8;
    transform: rotate(-15deg);
    z-index: 1;
    pointer-events: none;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 5%;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s;
}

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

@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .hero-grid { gap: 2rem; }
}

@media (max-width: 768px) {
    .hero-carousel { min-height: auto; padding: 100px 0; }
    .hero-grid { flex-direction: column; text-align: center; }
    .hero-text-side { max-width: 100%; order: 2; }
    .hero-image-side { order: 1; margin-bottom: 2rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-socials { justify-content: center; }
    .carousel-dots { left: 50%; transform: translateX(-50%); }
    .hero-leaf { display: none; }
}

/* Stats Bar Section */
.stats-section {
    background: var(--secondary);
    padding: 60px 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    border-radius: 40px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 20px 40px rgba(6, 78, 59, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 1rem;
    }
    .stats-section {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

/* Divider styles removed in favor of grid spacing */

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    color: white;
}

.stat-label {
    font-size: 0.95rem;
    margin: 0.3rem 0 0;
    opacity: 0.9;
    font-weight: 500;
}

/* Unique Offer Section */
.offer-section-unique {
    background: #f0fdf4; /* Light green background from user image */
}

.premium-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.offer-unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.offer-card-unique {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.offer-card-unique:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.1);
}

.offer-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Custom Icon Colors based on categories */
.offer-icon-wrapper.i-1 { background: #dcfce7; color: #16a34a; }
.offer-icon-wrapper.i-2 { background: #fef3c7; color: #d97706; }
.offer-icon-wrapper.i-3 { background: #dbeafe; color: #2563eb; }
.offer-icon-wrapper.i-4 { background: #fee2e2; color: #dc2626; }
.offer-icon-wrapper.i-5 { background: #f3e8ff; color: #9333ea; }
.offer-icon-wrapper.i-6 { background: #fae8ff; color: #c026d3; }
.offer-icon-wrapper.i-7 { background: #ccfbf1; color: #0d9488; }

/* Why Choose Us Redesign */
.why-us-section {
    background: white;
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 5rem;
}

.why-us-image-side {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-accent-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background: #f0fdf4;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    z-index: 1;
    animation: morph 15s linear infinite alternate;
}

@keyframes morph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%; }
}

.why-us-img-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
}

.why-us-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 40px 80px rgba(6, 78, 59, 0.15);
}

.why-us-content-side {
    position: relative;
    z-index: 3;
}

.why-us-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    background: #f0fdf4;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.4rem;
    font-weight: 700;
    margin-top: 0;
}

.benefit-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .why-us-grid { gap: 3rem; }
}

@media (max-width: 768px) {
    .why-us-grid { grid-template-columns: 1fr; }
    .why-us-image-side { order: 2; margin-top: 4rem; }
    .why-us-content-side { order: 1; text-align: center; }
    .benefit-text h3{
        text-align: left;
    }
    .benefit-text p{
        text-align: left;
    }
}

/* Core Wellness Pillars */
.wellness-pillars-section {
    background: #fdfdfd;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.pillar-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
    border-color: var(--primary-light);
}

.pillar-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 1.5rem;
}

/* Unique pillar colors */
.pillar-icon.p-1 { background: #fff7ed; color: #f97316; }
.pillar-icon.p-2 { background: #f0fdf4; color: #16a34a; }
.pillar-icon.p-3 { background: #fdf2f8; color: #db2777; }
.pillar-icon.p-4 { background: #f0f9ff; color: #0284c7; }
.pillar-icon.p-5 { background: #f5f3ff; color: #7c3aed; }
.pillar-icon.p-6 { background: #fffbeb; color: #d97706; }

.pillar-card h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.pillar-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* End of Core Wellness Pillars */

.offer-card-unique h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.offer-card-unique p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .stat-item.divider { display: none; }
    .stats-section { border-radius: 20px; width: 95%; }
    .premium-title { font-size: 2.2rem; }
}

/* Parallax Call-to-Action */
.parallax-cta-section {
    position: relative;
    padding: 120px 0;
    background-image: url('images/parallax-bg.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
    color: white;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(6, 78, 59, 0.7), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

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

.parallax-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 1.5rem 0;
    line-height: 1.2;
}

.parallax-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.parallax-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .parallax-cta-section {
        background-attachment: scroll; /* Fixes performance issues and clipping on mobile */
        padding: 80px 20px;
    }
    .parallax-title {
        font-size: 2.5rem;
    }
}

/* About Page Hero Styles */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background-image: url('images/about-hero.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.page-hero-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 50vh;
        background-attachment: scroll;
        padding: 80px 0px;
    }
    .page-hero h1 {
        font-size: 2.2rem !important; /* Reduced to prevent overflow */
    }
    .page-hero-desc {
        font-size: 1.05rem;
    }
}

/* Philosophy Pillars Section */
.philosophy-section {
    padding: 100px 0;
    background: #ffffff;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
}

.philosophy-pillar {
    position: relative;
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f1f5f9;
}

.philosophy-pillar:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.1);
}

.pillar-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
}

.pillar-inner {
    padding: 3.5rem 2.5rem;
}

.pillar-icon-box {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 2rem;
    transition: all 0.3s;
}

.philosophy-pillar:hover .pillar-icon-box {
    background: var(--primary);
    color: white;
    transform: rotate(10deg);
}

.philosophy-pillar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--secondary);
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.philosophy-pillar p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.pillar-list {
    list-style: none;
    padding: 0;
}

.pillar-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

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

@media (max-width: 1024px) {
    .philosophy-pillars {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .philosophy-pillars {
        grid-template-columns: 1fr;
    }
    .philosophy-section {
        padding: 60px 20px;
    }
}

/* Specialized Expertise Section */
.expertise-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.clinical-icon-list {
    list-style: none;
    padding: 0;
    margin-top: 3rem;
    display: grid;
    gap: 2rem;
}

.clinical-icon-list li {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.clinical-icon {
    min-width: 50px;
    height: 50px;
    background: #f0fdf4;
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.clinical-text h4 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.3rem;
    font-weight: 700;
    margin-top: 0;
}

.clinical-text p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

.partnership-card {
    background: var(--secondary);
    border-radius: 3rem;
    padding: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(6, 78, 59, 0.15);
}

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

.partnership-process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}

.process-item strong {
    display: block;
    color: white;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.process-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

@media (max-width: 1024px) {
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .partnership-card {
        padding: 2.5rem;
        border-radius: 2rem;
    }
    .partnership-process {
        grid-template-columns: 1fr;
    }
}

/* Visual Journey: Our Approach */
.approach-visual-section {
    background: #ffffff;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start; /* Changed from center to allow sticky to work */
}

.approach-image-side {
    position: sticky; /* Image stays fixed while scrolling */
    top: 120px;
    align-self: start;
}

.image-wrapper {
    position: relative;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s;
}

.approach-image-side:hover img {
    transform: scale(1.05);
}

.image-accent-box {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.accent-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.accent-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}

.approach-timeline {
    margin-top: 3rem;
    position: relative;
}

.timeline-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -30px;
    width: 2px;
    background: #e2e8f0;
}

.step-marker {
    min-width: 50px;
    height: 50px;
    background: #f0fdf4;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
    border: 2px solid #d1fae5;
    z-index: 2;
}

.step-info h4 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    margin-top:0;
}

.step-info p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .approach-image-side {
        order: 2;
        position: relative; /* Disabling sticky on smaller screens */
        top: 0;
    }
    .approach-content-side {
        order: 1;
    }
}

@media (max-width: 768px) {
    .image-wrapper {
        border-radius: 2rem;
    }
    .image-accent-box {
        padding: 1rem 1.5rem;
        bottom: 15px;
        right: 15px;
    }
}

/* Mission Parallax Section */
.mission-parallax-section {
    position: relative;
    padding: 120px 0;
    width: 100%;
    min-height: 80vh;
    background-image: url('images/mission-bg.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.mission-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(6, 78, 59, 0.8), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.mission-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.mission-desc {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin: 2.5rem 0;
}

.mission-values {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.value-mini {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.value-mini strong {
    font-size: 1.1rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.value-mini span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .mission-parallax-section {
        min-height: 60vh;
        background-attachment: scroll;
        padding: 80px 0px;
    }
    .mission-parallax-section h2 {
        font-size: 2.5rem !important;
    }
    .mission-desc {
        font-size: 1.1rem;
    }
    .mission-values {
        gap: 1.5rem;
    }
}

/* Pricing Page Modernization */
.pricing-visual-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 4rem;
}

.plan-card {
    flex: 1 1 320px;
    max-width: 380px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-15px);
}

.plan-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    display: block;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
}

.plan-price span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.featured-plan {
    transform: none; /* Removed scale to make it look uniform with others */
    z-index: 5;
}

.featured-plan .pillar-inner {
    border: 1px solid #f1f5f9 !important; /* Reset border to match others */
}

/* Plan card internal list alignment */
.plan-card .pillar-list {
    flex-grow: 1;
}

@media (max-width: 1024px) {
    .featured-plan {
        transform: scale(1);
    }
}

/* Contact Page Modernization */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    transform: translateX(10px);
}

.hub-icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hub-text h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--secondary);
}

.hub-text p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.hub-text span {
    font-size: 0.85rem;
    color: #64748b;
}

.contact-social-row {
    display: flex;
    gap: 1.5rem;
}

.contact-social-row a {
    width: 50px;
    height: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-social-row a:hover {
    background: var(--secondary);
    color: white;
    border-color: var(--secondary);
}

.contact-form-premium-container {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.06);
    border: 1px solid #f1f5f9;
}

.form-group-modern {
    margin-bottom: 2rem;
}

.form-group-modern label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 0.8rem;
}

.form-group-modern input,
.form-group-modern textarea {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fdfdfd;
}

.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

@media (max-width: 1024px) {
    .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .contact-form-premium-container {
        padding: 2rem;
    }
    .grid-2-form {
        grid-template-columns: 1fr !important;
    }
}

/* Global Footer Modernization */
.main-footer {
    background: #064e3b; /* Deep Nutrify Emerald */
    color: white;
    padding: 100px 0 40px;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 4rem;
    margin-bottom: 80px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 2rem;
    border-radius: 12px;
}

.footer-mission-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 1rem;
    max-width: 320px;
}

.footer-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

.footer-link-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-link-list a:hover {
    color: white;
    padding-left: 8px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.f-contact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.f-contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.f-contact-item p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}
.main-footer .contact-social-row a{
    color: #fff;
}
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .f-contact-item {
        justify-content: center;
    }
    .footer-mission-text {
        margin: 0 auto;
    }
    .contact-social-row {
        justify-content: center;
    }
}

/* Micro-animations */
.icon-pulse {
    animation: pulse-green 2s infinite;
    border-radius: 50%;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* ==========================================================================
   Ultimate Mobile Responsiveness and Styling Upgrades
   ========================================================================== */
@media (max-width: 1024px) {
    .offer-unique-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    /* Main Navbar mobile look & dropdown navigation */
    .nav-mobile-toggle {
        display: block !important;
    }
    .nav-links {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #ffffff !important;
        flex-direction: column !important;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
        box-shadow: 0 15px 35px rgba(6, 78, 59, 0.12) !important;
        border-top: 1px solid #e2e8f0 !important;
        border-radius: 0 0 1.5rem 1.5rem !important;
        z-index: 1000 !important;
    }
    .nav-links.active {
        display: flex !important;
    }
    .nav-links a {
        font-size: 1.1rem !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0.6rem 0 !important;
        border-bottom: 1px solid #f1f5f9 !important;
    }
    .nav-links a:last-child, .nav-links a.nav-cta {
        border-bottom: none !important;
    }
    .nav-links .nav-cta {
        width: auto !important;
        align-self: center !important;
        margin-top: 0.5rem !important;
        padding: 0.8rem 2.5rem !important;
    }

    /* Hero Plate Sizing and Overlay Centering */
    .circular-image-wrapper {
        width: 320px !important;
        height: 320px !important;
        margin: 0 auto !important;
    }
    .hero-image-side::before {
        width: 320px !important;
        height: 320px !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) translate(10px, 10px) !important;
    }

    /* Form Intake and Diagnostic Customizations */
    .form-card {
        padding: 1.5rem !important;
        border-radius: 1.5rem !important;
    }
    .progress-stepper {
        margin-bottom: 2rem !important;
    }
    .step-circle {
        width: 38px !important;
        height: 38px !important;
        font-size: 0.85rem !important;
        border-width: 2px !important;
    }

    /* Contact Page Inline Grids Override */
    .contact-grid-main {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .form-group[style*="grid-template-columns"], 
    div[style*="grid-template-columns: 1fr 1fr"],
    .form-group-flex {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    /* Clinical Case Transformation Spotlight */
    .spotlight-layout {
        grid-template-columns: 1fr !important;
    }
    .spotlight-layout > div:first-child {
        min-height: 250px !important;
    }
    .spotlight-layout > div:last-child {
        padding: 2.2rem 1.5rem !important;
    }
    .spotlight-layout h3 {
        font-size: 1.8rem !important;
        text-align: center !important;
    }
    .spotlight-layout p {
        font-size: 0.95rem !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
    }
    .spotlight-layout div[style*="display: flex; gap: 3rem;"] {
        gap: 1.5rem !important;
        justify-content: space-around !important;
    }

    /* Interactive Assessment Onramp Hero Section */
    .promo-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        text-align: center !important;
    }
    .promo-text-side {
        text-align: center !important;
    }
    .promo-text-side p {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .feature-ticks {
        grid-template-columns: 1fr !important;
        text-align: left !important;
        max-width: 300px !important;
        margin: 0 auto 2.5rem !important;
    }
    .promo-image-side {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    .floating-promo-img {
        max-width: 280px !important;
        height: auto !important;
    }
}

/* Extreme Micro Displays (iPhone SE and smaller) */
@media (max-width: 380px) {
    .circular-image-wrapper {
        width: 260px !important;
        height: 260px !important;
    }
    .hero-image-side::before {
        width: 260px !important;
        height: 260px !important;
    }
    .premium-title {
        font-size: 2rem !important;
    }
    .hero-title {
        font-size: 2.3rem !important;
    }
    .step-circle {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }
}

/* Feedback & Hidden Admin Login Modals */
.nutrify-feedback-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 78, 59, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nutrify-feedback-overlay.show {
    display: flex !important;
    opacity: 1 !important;
}

.nutrify-feedback-content {
    background: white;
    padding: 2.5rem;
    border-radius: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: left;
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.15), opacity 0.35s ease;
    opacity: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    color: #1e293b;
}

.nutrify-feedback-overlay.show .nutrify-feedback-content {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.nutrify-modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.2s;
}

.nutrify-modal-close-btn:hover {
    color: #0f172a;
}

.nutrify-modal-header {
    margin-bottom: 1.5rem;
}

.nutrify-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #064e3b;
    margin-bottom: 0.5rem;
}

.nutrify-modal-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.5;
}

/* Feedback Form Elements */
.nutrify-feedback-form .form-group-modern {
    margin-bottom: 1.25rem;
}

.nutrify-feedback-form label {
    font-weight: 600;
    font-size: 0.85rem;
    color: #475569;
    display: block;
    margin-bottom: 0.5rem;
    text-transform: none;
    letter-spacing: normal;
}

/* Star Rating custom control */
.feedback-star-rating {
    display: flex;
    gap: 0.5rem;
    font-size: 1.75rem;
    margin: 0.5rem 0 1rem;
}

.feedback-star-rating i {
    cursor: pointer;
    color: #cbd5e1;
    transition: color 0.15s ease, transform 0.15s ease;
}

.feedback-star-rating i.active {
    color: #f59e0b;
    transform: scale(1.1);
}

.feedback-star-rating i:hover {
    transform: scale(1.15);
}

/* Feedback button styled */
.footer-feedback-btn {
    background: #10b981;
    color: white !important;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.2);
    font-family: 'Outfit', sans-serif;
    margin-top: 1rem;
}

.footer-feedback-btn:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
}

.nutrify-btn-submit {
    width: 100%;
    background: #064e3b;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.nutrify-btn-submit:hover {
    background: #047857;
    transform: translateY(-1px);
}

.nutrify-btn-submit:disabled {
    background: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

/* Divider line */
.nutrify-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.5rem 0;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
}

.nutrify-divider::before,
.nutrify-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.nutrify-divider:not(:empty)::before {
    margin-right: .5em;
}

.nutrify-divider:not(:empty)::after {
    margin-left: .5em;
}

/* Alerts in modals */
.nutrify-modal-alert {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nutrify-modal-alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.nutrify-modal-alert-success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #86efac;
}

/* Responsive Large Typography Overrides */
.responsive-hero-title {
    font-size: 4rem !important;
}
.responsive-parallax-title {
    font-size: 3.5rem !important;
}
@media (max-width: 1024px) {
    .responsive-hero-title {
        font-size: 3rem !important;
    }
    .responsive-parallax-title {
        font-size: 2.8rem !important;
    }
}
@media (max-width: 768px) {
    .responsive-hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }
    .responsive-parallax-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
    }
}
@media (max-width: 480px) {
    .responsive-hero-title {
        font-size: 2rem !important;
    }
    .responsive-parallax-title {
        font-size: 1.7rem !important;
    }
}

/* Premium Navigation Logo Interactive Styling */
.nav-logo {
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    user-select: none;
    -webkit-user-select: none;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-logo:active {
    transform: scale(0.97);
    opacity: 0.85;
}

.nav-logo img {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo:hover img {
    transform: rotate(8deg) scale(1.05);
}

.nav-logo .logo-text {
    transition: color 0.3s ease;
}

.nav-logo:hover .logo-text {
    color: #10b981 !important; /* highlight brand text with emerald green */
}

/* ==========================================
   DESKTOP VIEW: CORNER-TO-CORNER WIDE VIEW 
   AND PREMIUM LARGE TEXT ENHANCEMENTS
   ========================================== */
@media (min-width: 1025px) {
    /* 1. Corner-to-Corner Fluid Container Layouts */
    .container,
    div.container[style*="max-width"],
    .footer-container,
    .nav-container,
    .contact-grid-modern,
    .grid-contact,
    .why-us-grid,
    .spotlight-layout {
        max-width: 96% !important;
        width: 96% !important;
        padding-left: 2% !important;
        padding-right: 2% !important;
    }

    /* Make sure navigation fills corner to corner beautifully */
    .main-nav {
        padding: 1.5rem 3% !important;
    }
    
    .nav-container {
        max-width: 100% !important;
        width: 100% !important;
        padding: 0 !important;
    }

    /* Expand hero slides and hero text width for premium statement-making layouts */
    .hero-grid {
        max-width: 96% !important;
        width: 96% !important;
        padding: 0 2% !important;
        gap: 6rem !important;
    }

    .hero-text-side {
        max-width: 750px !important;
    }

    /* Stats Section Full-Width Extension */
    .stats-section {
        width: 96% !important;
        max-width: 96% !important;
        border-radius: 50px !important;
    }

    /* Grid components spacing & widths */
    .grid-3 {
        gap: 3rem !important;
    }

    .pillars-grid,
    .offer-unique-grid,
    .pricing-grid {
        gap: 3rem !important;
    }

    /* Spotlight Slider full screen expansion */
    .spotlight-card {
        max-width: 96% !important;
        width: 96% !important;
        margin: 0 auto !important;
        padding: 4rem !important;
    }

    /* Why Choose Us Full Width Side-by-Side */
    .why-us-grid {
        gap: 5rem !important;
    }

    /* Remove limits on plan card and form container widths */
    .plan-card {
        max-width: 450px !important;
    }

    .form-container,
    .contact-form-container {
        max-width: 1200px !important;
        width: 95% !important;
    }

    /* 2. Premium Large Desktop Typography Overrides */
    body {
        font-size: 1.15rem !important; /* Larger body text for effortless reading */
    }

    /* Main Hero and Headers */
    .hero-title,
    h1.hero-title {
        font-size: 5.5rem !important;
        line-height: 1.05 !important;
    }

    .hero-desc {
        font-size: 1.4rem !important;
        max-width: 680px !important;
        line-height: 1.8 !important;
    }

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

    .responsive-parallax-title,
    .premium-title {
        font-size: 4.2rem !important;
        line-height: 1.15 !important;
    }

    .section-header h2 {
        font-size: 3.5rem !important;
        line-height: 1.15 !important;
    }

    .section-header p,
    .section-subtitle {
        font-size: 1.35rem !important;
        max-width: 900px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .mission-desc {
        font-size: 1.4rem !important;
        line-height: 1.8 !important;
        max-width: 900px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Card Titles and Descriptions */
    .feature-card h3,
    .offer-card-unique h3,
    .pillar-card-title,
    .philosophy-pillar h3,
    .pricing-card h3 {
        font-size: 1.75rem !important;
        margin-bottom: 1.2rem !important;
    }

    .feature-card p,
    .offer-card-unique p,
    .pillar-card-desc,
    .philosophy-pillar p,
    .pricing-features li {
        font-size: 1.15rem !important;
        line-height: 1.7 !important;
    }

    /* Subheadings and specific items */
    h3, h4 {
        font-size: 1.4rem !important;
    }

    p {
        font-size: 1.15rem !important;
        line-height: 1.7 !important;
    }

    /* Contact Details and Icons */
    .hub-text h4 {
        font-size: 1.5rem !important;
    }

    .hub-text p {
        font-size: 1.3rem !important;
    }

    /* Interactive Action Triggers (Bigger CTA Buttons) */
    .cta-btn,
    .cta-btn-outline,
    .cta-btn-white-outline,
    .submit-btn-premium {
        font-size: 1.35rem !important;
        padding: 1.4rem 4rem !important;
    }

    .btn-meet-experts {
        font-size: 1.25rem !important;
        padding: 1.2rem 3rem !important;
    }

    /* Footer text sizes */
    .footer-col-title {
        font-size: 1.65rem !important;
    }

    .footer-link-list a,
    .footer-mission-text,
    .f-contact-item p {
        font-size: 1.1rem !important;
    }

    /* Forms */
    .form-group-modern label,
    .label-text,
    .form-row label {
        font-size: 1rem !important;
    }

    .form-group-modern input,
    .form-group-modern textarea,
    .form-group-modern select,
    .form-row input,
    .form-row textarea,
    .input-field {
        font-size: 1.15rem !important;
        padding: 1.4rem !important;
    }
}

/* Custom Desktop Wide View & Extreme Text Scale Enhancement */
@media (min-width: 1200px) {
    /* Stretch layout completely from the left side corner to right side corner */
    .hero-grid,
    .container,
    .wrapper,
    .form-container,
    .nav-container,
    .grid-container,
    .grid-layout,
    .pricing-grid,
    .about-grid,
    .footer-grid,
    .services-grid {
        max-width: 98% !important;
        width: 98% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
    
    /* Make the desktop content have a big view text and all */
    html {
        font-size: 110% !important; /* Scale up all rem/em font sizes by 10% */
    }
    
    body {
        font-size: 1.15rem !important;
    }
    
    h1, .hero-title, .title-display {
        font-size: 4rem !important;
        line-height: 1.1 !important;
    }
    
    h2, .section-title {
        font-size: 3rem !important;
    }
}

/* Premium Refined Style for Section 6 (What We Offer) */
main > section.what-we-offer-section {
    background: radial-gradient(circle at top right, #f9fafb, #f0fdf4) !important;
    position: relative;
    overflow: hidden;
}

main > section.what-we-offer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
}

main > section.what-we-offer-section .offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

main > section.what-we-offer-section .offering-card {
    background: #ffffff !important;
    border: 1px solid rgba(16, 185, 129, 0.1) !important;
    box-shadow: 0 10px 30px -10px rgba(6, 78, 59, 0.04) !important;
    border-radius: 2rem !important;
    padding: 3rem 2rem !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    z-index: 1;
}

main > section.what-we-offer-section .offering-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

main > section.what-we-offer-section .offering-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: #10b981 !important;
    box-shadow: 0 25px 50px -12px rgba(6, 78, 59, 0.1) !important;
}

main > section.what-we-offer-section .offering-card:hover::before {
    opacity: 1;
}

main > section.what-we-offer-section .offering-card .pillar-icon-circle {
    width: 64px !important;
    height: 64px !important;
    border-radius: 1.25rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    margin-bottom: 2rem !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 8px 16px -4px rgba(0,0,0,0.05) !important;
}

main > section.what-we-offer-section .offering-card:hover .pillar-icon-circle {
    transform: scale(1.1) rotate(6deg) !important;
    box-shadow: 0 12px 20px -4px rgba(16, 185, 129, 0.2) !important;
}

main > section.what-we-offer-section .offering-card .pillar-card-title {
    font-size: 1.35rem !important;
    font-weight: 700 !important;
    color: #064e3b !important;
    margin-bottom: 0.75rem !important;
}

main > section.what-we-offer-section .offering-card .pillar-card-desc {
    font-size: 0.95rem !important;
    color: #4b5563 !important;
    line-height: 1.6 !important;
}



